Manage My Tabs - Tab Manager

Manage My Tabs - Tab Manager

Manage My Tabs is an extension that gives the user a quick and simple way to manage their tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Manage My Tabs - Tab Manager",
  "description": "Manage My Tabs is an extension that gives the user a quick and simple way to manage their tabs.",
  "version": "0.4.0",
  "browser_action": {
    "default_icon": "images/icons/icon128.png"
  },
  "icons": {
    "16": "images/icons/icon16.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "clipboardWrite"
  ],
  "background": {
    "scripts": [
      "scripts/src/bg.js"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+M",
        "mac": "Alt+M"
      }
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "scripts/lib/jquery/jquery-3.3.1.min.js",
        "scripts/lib/jquery/jquery-ui.js"
      ]
    }
  ]
}