Auto reloader

Auto reloader

You can reload page automatically.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Auto reloader",
  "manifest_version": 3,
  "version": "1.2",
  "description": "You can reload page automatically.",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "64": "icon64.png",
    "256": "icon256.png"
  },
  "action": {
    "default_icon": "icon32.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}