Easy Auto Refresh+

Easy Auto Refresh+

Easy auto refresh pages after selected timeout.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "name": "Easy Auto Refresh+",
  "version": "1.2",
  "manifest_version": 3,
  "description": "Easy auto refresh pages after selected timeout.",
  "background": {
    "service_worker": "scripts/background.js"
  },
  "action": {
    "default_icon": {
      "32": "images/refresh-off-38.png"
    },
    "default_title": "Easy Auto Refresh",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "browsingData",
    "notifications",
    "storage",
    "scripting",
    "alarms",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/keypress.js"
      ],
      "run_at": "document_start"
    },
    {
      "js": [
        "scripts/content_fzveca.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "minimum_chrome_version": "101",
  "icons": {
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}