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",
  "name": "Auto Refresh Page",
  "version": "2.0",
  "description": "Refresh web pages automatically. Auto-refresh and page monitor with specified time intervals.",
  "permissions": [
    "tabs",
    "http://*/*"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "48": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'"
}