Chrome Tab Tools

Chrome Tab Tools

Small tweaks to improve the life in the modern web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chrome Tab Tools",
  "description": "Small tweaks to improve the life in the modern web.",
  "version": "0.6.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "action": {
    "default_icon": "images/icon.png",
    "default_title": "Gather all tabs in current window"
  },
  "content_scripts": [
    {
      "js": [
        "improved-browsing-content-script.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "icons": {
    "16": "images/icon16x16.png",
    "48": "images/icon48x48.png",
    "128": "images/icon.png"
  },
  "options_page": "options.html",
  "permissions": [
    "contextMenus",
    "tabs",
    "storage",
    "scripting",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "short_name": "CTT.klib"
}