Auto Refresh Extension

Auto Refresh Extension

Automatically refreshes the page based on user-defined time intervals.

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 Extension",
  "version": "1.0",
  "description": "Automatically refreshes the page based on user-defined time intervals.",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Auto Refresh",
    "default_icon": {
      "16": "icons/icons8-refresh-16.png",
      "32": "icons/icons8-refresh-32.png",
      "48": "icons/icons8-refresh-48.png",
      "128": "icons/icons8-refresh-128.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/icons8-refresh-16.png",
    "32": "icons/icons8-refresh-32.png",
    "48": "icons/icons8-refresh-48.png",
    "128": "icons/icons8-refresh-128.png"
  }
}