Auto Refresh Website - Reload Page

Auto Refresh Website - Reload Page

Auto refresh for websites with multiple timers and advances settings

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Marianna Mokrianyn",
  "manifest_version": 3,
  "name": "Auto Refresh Website - Reload Page",
  "description": "Auto refresh for websites with multiple timers and advances settings",
  "version": "1.0.0",
  "permissions": [
    "storage",
    "tabs",
    "alarms",
    "webNavigation",
    "idle"
  ],
  "action": {
    "default_icon": {
      "128": "icons/disabled/128.png"
    },
    "default_popup": "popup/index.html"
  },
  "background": {
    "service_worker": "background/worker.js"
  },
  "icons": {
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "api.js",
        "content-scripts/proxy.js",
        "utils.js",
        "content-scripts/index.js",
        "content-scripts/index.js"
      ],
      "css": [
        "content-scripts/style.css"
      ]
    }
  ]
}