Page timer

Page timer

place a timer into a webpage which will bring the page back at the end of the timer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Page timer",
  "description": "place a timer into a webpage which will bring the page back at the end of the timer",
  "version": "3.5",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "contextMenus"
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "timer.js",
      "contextMenu.js"
    ],
    "persistent": true
  },
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}