Auto Refresh Page

Auto Refresh Page

Refresh web pages automatically. Auto-refresh and page monitor with specified time intervals.

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_app_name__",
  "description": "__MSG_app_description__",
  "short_name": "__MSG_app_short_name__",
  "version": "3.2",
  "default_locale": "en",
  "author": "Auto Refresh Page",
  "homepage_url": "https://www.hashtap.com/@refresh",
  "icons": {
    "16": "/img/icons/16x16.png",
    "32": "/img/icons/32x32.png",
    "48": "/img/icons/48x48.png",
    "64": "/img/icons/64x64.png",
    "80": "/img/icons/80x80.png",
    "128": "/img/icons/128x128.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      }
    },
    "toggle": {
      "description": "__MSG_command_toggle__",
      "suggested_key": {
        "default": "Ctrl+Shift+Space",
        "mac": "Command+Shift+Space"
      }
    }
  },
  "action": {
    "default_icon": {
      "16": "/img/icons/16x16-green.png",
      "20": "/img/icons/20x20-green.png",
      "24": "/img/icons/24x24-green.png",
      "32": "/img/icons/32x32-green.png"
    },
    "default_title": "__MSG_app_short_name__",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "scripting",
    "contextMenus",
    "browsingData",
    "notifications"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/icons/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}