Auto Tab Discard (suspend)

Auto Tab Discard (suspend)

Increase browser speed and reduce memory load when you have numerous open tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.6.8.2",
  "name": "Auto Tab Discard (suspend)",
  "description": "__MSG_app_description__",
  "default_locale": "en",
  "icons": {
    "16": "/data/icons/16.png",
    "32": "/data/icons/32.png",
    "48": "/data/icons/48.png",
    "64": "/data/icons/64.png",
    "128": "/data/icons/128.png",
    "256": "/data/icons/256.png",
    "512": "/data/icons/512.png"
  },
  "storage": {
    "managed_schema": "schema.json"
  },
  "permissions": [
    "idle",
    "storage",
    "contextMenus",
    "notifications",
    "alarms",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "worker/core.mjs",
    "type": "module"
  },
  "content_scripts": [
    {
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/data/inject/watch.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "action": {
    "default_popup": "/data/popup/index.html"
  },
  "options_ui": {
    "page": "/data/options/index.html",
    "open_in_tab": true
  },
  "homepage_url": "https://webextension.org/listing/tab-discard.html",
  "commands": {
    "_execute_action": {},
    "discard-tab": {
      "description": "__MSG_cmd_discard_tab__"
    },
    "discard-tree": {
      "description": "__MSG_cmd_discard_tree__"
    },
    "discard-window": {
      "description": "__MSG_cmd_discard_window__"
    },
    "discard-other-windows": {
      "description": "__MSG_cmd_discard_other_windows__"
    },
    "discard-tabs": {
      "description": "__MSG_cmd_discard_tabs__"
    },
    "discard-rights": {
      "description": "__MSG_cmd_discard_rights__"
    },
    "discard-lefts": {
      "description": "__MSG_cmd_discard_lefts__"
    },
    "move-previous": {
      "description": "__MSG_cmd_move_previous__"
    },
    "move-next": {
      "description": "__MSG_cmd_move_next__"
    },
    "close": {
      "description": "__MSG_cmd_close__"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/data/page.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}