Tab Autoclose Timer

Tab Autoclose Timer

Autoclose tabs with timer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tab Autoclose Timer",
  "version": "0.0.4",
  "manifest_version": 2,
  "description": "Autoclose tabs with timer",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "src/bg/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icons/icon19.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "notifications",
    "*://*/*"
  ],
  "web_accessible_resources": [
    "icons/icon48.png"
  ]
}