Refresh Page - Auto reload page

Refresh Page - Auto reload page

Automatically page reload after any number of seconds. Works for all pages. Refresh tab on demand.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "0.1.5",
  "offline_enabled": true,
  "name": "__MSG_name__",
  "short_name": "Tab Refresh",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "permissions": [
    "https://*/*",
    "alarms",
    "storage",
    "notifications",
    "webRequest",
    "webRequestBlocking"
  ],
  "background": {
    "scripts": [
      "lib/config.js",
      "lib/chrome.js",
      "lib/runtime.js",
      "lib/common.js",
      "data/bg.js"
    ]
  },
  "browser_action": {
    "default_title": "Refresh Page",
    "default_popup": "data/popup/popup.html",
    "default_icon": {
      "16": "data/icons/16.png",
      "32": "data/icons/32.png"
    }
  },
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "128": "data/icons/128.png"
  }
}