Tab pinner

Tab pinner

Pin or unpin tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tab pinner",
  "description": "__MSG_description__",
  "version": "3.0.3",
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "options_page": "options.html",
  "action": {
    "default_icon": {
      "16": "imgs/icon_16.png",
      "48": "imgs/icon_48.png",
      "128": "imgs/icon_128.png",
      "256": "imgs/icon_256.png"
    },
    "default_title": "__MSG_pin__"
  },
  "icons": {
    "16": "imgs/icon_big_16.png",
    "48": "imgs/icon_big_48.png",
    "128": "imgs/icon_big_128.png",
    "256": "imgs/icon_big_256.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+X",
        "mac": "Command+Shift+X",
        "chromeos": "Ctrl+Shift+X",
        "linux": "Ctrl+Shift+X"
      }
    }
  },
  "manifest_version": 3
}