Free Auto Refresh

Free Auto Refresh

Helps you refresh your web page with lots of awesome features. It is 100% free and no ads.

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__",
  "description": "__MSG_appDesc__",
  "short_name": "Auto Refresh",
  "version": "1.1.1",
  "author": "[email protected]",
  "default_locale": "en",
  "icons": {
    "64": "image/icon64.png",
    "128": "image/icon128.png"
  },
  "action": {
    "default_icon": {
      "64": "image/icon64.png",
      "128": "image/icon128.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start",
      "css": [
        "css/style.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "homepage_url": "https://www.timefly.cn/free-auto-refresh",
  "options_page": "options.html",
  "background": {
    "service_worker": "service_worker.js"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "storage",
    "browsingData",
    "notifications"
  ]
}