Tab+

Tab+

Bring new tabs to front and in last position, allow to save and restore windows.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "background": {
    "service_worker": "tabplus-worker.js",
    "type": "module"
  },
  "default_locale": "en",
  "description": "__MSG_desc__",
  "icons": {
    "16": "assets/logo/16.png",
    "64": "assets/logo/64.png",
    "128": "assets/logo/128.png"
  },
  "action": {
    "default_icon": {
      "16": "assets/logo/16.png",
      "64": "assets/logo/64.png",
      "128": "assets/logo/128.png"
    }
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E"
      }
    }
  },
  "name": "Tab+",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "tabGroups",
    "contextMenus",
    "storage"
  ],
  "version": "0.2.1"
}