iCloser

iCloser

A Google Chrome Extension to automatically close Incognito windows after a period of inactivity.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "iCloser",
  "description": "A Google Chrome Extension to automatically close Incognito windows after a period of inactivity.",
  "version": "1.0.1",
  "background": {
    "scripts": [
      "icloser.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "icloserDOM.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "icloserOptions.html",
  "permissions": [
    "tabs",
    "background"
  ],
  "icons": {
    "16": "icloser_16.png",
    "48": "icloser_48.png",
    "128": "icloser_128.png"
  }
}