Auto Close Tabs

Auto Close Tabs

auto closes idle tabs when not active, hidden, playing audio, highlighted/selected, pinned or contain visible text input field with text in them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "igorlogius",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_area": "navbar"
  },
  "description": "Auto closes idle tabs when they are not active, hidden, playing audio, selected, pinned or contain visible text input fields with text in them",
  "icons": {
    "256": "icon.png"
  },
  "manifest_version": 2,
  "name": "Auto Close Tabs",
  "permissions": [
    "bookmarks",
    "menus",
    "tabs",
    "storage",
    "<all_urls>"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "version": "1.7.16",
  "browser_specific_settings": {
    "gecko": {
      "id": "{bc4e2883-5762-4306-81dc-32ebe7136404}"
    }
  }
}