Auto Refresh Plus - Auto Reload Page

Auto Refresh Plus - Auto Reload Page

Powerful Auto Refresh and Tab Auto Refresh Tool!

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_name__",
  "$schema": "https://json.schemastore.org/chrome-manifest.json",
  "version": "0.1.1",
  "description": "__MSG_description__",
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "__MSG_name__",
    "default_popup": "index.html"
  },
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "default_locale": "en"
}