Easy Auto Refresh

Easy Auto Refresh

Auto-refresh and auto-reload pages after any number of seconds.

Additional files are visible only to premium users

manifest.json


{
  "name": "Easy Auto Refresh",
  "version": "6.4",
  "manifest_version": 3,
  "description": "Auto-refresh and auto-reload pages after any number of seconds.",
  "background": {
    "service_worker": "scripts/background.js"
  },
  "action": {
    "default_icon": {
      "38": "images/refresh-off-38.png"
    },
    "default_title": "Easy Auto Refresh",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "browsingData",
    "notifications",
    "storage",
    "scripting",
    "alarms"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/keypress.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "48": "images/easy-auto-refresh-48x48.png",
    "128": "images/easy-auto-refresh-128x128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}