Simple Discard Tab

Simple Discard Tab

Discards tabs that are inactive for 3 minutes to free up memory, while still preserving the tabs state when you click on them again.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extensionName__",
  "author": "Terry",
  "version": "0.3.5",
  "description": "__MSG_extensionDescription__",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "16": "menuitem_16.png",
    "20": "menuitem_20.png",
    "24": "icon_24.png",
    "48": "icon_48.png",
    "96": "icon_96.png",
    "128": "icon_128.png"
  },
  "permissions": [
    "alarms",
    "contextMenus",
    "notifications",
    "storage"
  ],
  "optional_permissions": [
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "24": "icon_24.png",
      "48": "icon_48.png",
      "96": "icon_96.png"
    }
  },
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}