Tab Group

Tab Group

Allow you manage and save your chrome tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tab Group",
  "version": "1.3.3",
  "description": "Allow you manage and save your chrome tabs.",
  "icons": {
    "16": "images/icon_2_16.png",
    "48": "images/icon_2_48.png",
    "128": "images/icon_2_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/",
        "http://*/"
      ],
      "js": [
        "lib/jquery-3.1.0.min.js",
        "content_script/end.js",
        "lib/chrome-Storage-largeSync.min.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background/background-context-menu.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "contextMenus"
  ],
  "action": {
    "default_icon": {},
    "default_title": "Tab Group",
    "default_popup": "popup/popup.html"
  }
}