Tab Manager: Productivity & Tab Management

Tab Manager: Productivity & Tab Management

Tab Management is a system of web browser tools to automatically enhance your web browsing experience to its full potential.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tab Manager: Productivity & Tab Management",
  "version": "3.1",
  "description": "Tab Management is a system of web browser tools to automatically enhance your web browsing experience to its full potential.",
  "permissions": [
    "tabs",
    "tabGroups",
    "windows",
    "storage",
    "contextMenus"
  ],
  "optional_permissions": [],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "common.js",
        "tinyslider/min/tiny-slider.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",
        "tinyslider/tiny-slider.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>"
      ]
    }
  ]
}