Tab_Modifier

Tab_Modifier

Overview: Take control of your tabs Open-source extension. - Rename tab - Change tab icon - Pin tab - Prevent tab closing - Unique tab - Mute tab - Persistent between sessions - Rules editor - Import\Export rules to/from file.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Tab Modifier",
  "version": "0.21.0",
  "description": "Take control of your tabs",
  "homepage_url": "https://github.com/sylouuu/chrome-tab-modifier",
  "icons": {
    "16": "img/icon_16.png",
    "32": "img/icon_32.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "browser_action": {
    "default_icon": "img/icon_48.png"
  },
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com https://www.google-analytics.com; object-src 'self'",
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": true
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/*"
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "tabs",
    "storage",
    "contextMenus"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{72e1e117-c3cf-4190-a67c-639fcb08eb76}"
    }
  }
}