Tab Management: Tab Manager|Productivity

Tab Management: Tab Manager|Productivity

Tab Management is a Google Extension For Productivity. To make Google Chrome – Faster, Efficient and Secured.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Tab Management: Tab Manager|Productivity",
  "version": "3.0",
  "description": "Tab Management is a Google Extension For Productivity. To make Google Chrome – Faster, Efficient and Secured.",
  "permissions": [
    "tabs",
    "tabGroups",
    "windows",
    "storage",
    "contextMenus"
  ],
  "optional_permissions": [],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "common.js",
        "js/jquery-3.2.1.min.js",
        "js/jquery-ui.js",
        "js/TMLockSystem.js",
        "js/checkTrial.js",
        "js/installing.js"
      ],
      "css": [
        "css/jquery-ui.css",
        "css/TMLockSystem.css",
        "css/checkTrial.css"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_title": "Tab Management",
    "default_icon": "img/icons/icon32.png",
    "default_popup": "TabManagement.html"
  },
  "background": {
    "service_worker": "eventPage.js"
  },
  "manifest_version": 3,
  "content_security_policy": {
    "extension_pages": " script-src 'self'; object-src 'self'; img-src 'self'"
  },
  "icons": {
    "16": "img/icons/icon16.png",
    "32": "img/icons/icon32.png",
    "48": "img/icons/icon48.png",
    "128": "img/icons/icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "TabManagement.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}