Auto Refresh Plus

Auto Refresh Plus

Auto Refresh Plus automatically refresh and reload any page or tab after a specified 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": "Auto Refresh Plus",
  "version": "2.1.0",
  "description": "Auto Refresh Plus automatically refresh and reload any page or tab after a specified number of seconds",
  "icons": {
    "32": "icon128.png",
    "64": "icon128.png",
    "128": "icon128.png"
  },
  "action": {
    "default_title": " Auto Refresh Plus",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage"
  ]
}