Easy Auto Refresh

Easy Auto Refresh

Use Easy Auto Refresh extension to auto-refresh and auto-reload page after any number of seconds.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "version": "1.0.0",
  "description": "__MSG_shortDesc__",
  "default_locale": "en",
  "icons": {
    "16": "./src/img/logo-16.png",
    "48": "./src/img/logo-48.png",
    "128": "./src/img/logo-128.png"
  },
  "background": {
    "service_worker": "src/js/background.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "tabs",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  }
}