IncognitoDeathTimer

IncognitoDeathTimer

IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "IncognitoDeathTimer",
  "version": "1.0",
  "description": "IncognitoDeathTimer will blank out all incognito tabs and change all urls to google after a set amout ",
  "permissions": [
    "http://*.com/",
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_popup": "options.html",
    "default_icon": "icon.png",
    "default_title": "Closes any Incognito window open for more than an hour"
  }
}