Timer Refresh

Timer Refresh

Timer refresh the specified page or only refresh the inactive TAB page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "page": "background.html",
    "script": "background.js"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "icons": {
    "128": "img/on128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "page_action": {
    "default_icon": "img/on128.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_extName__"
  },
  "permissions": [
    "tabs",
    "browsingData",
    "webRequest",
    "webNavigation",
    "http://*/*",
    "https://*/*"
  ],
  "version": "0.0.1"
}