anchor

anchor

Tab switcher for Google Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "anchor",
  "description": "Tab switcher for Google Chrome.",
  "version": "3.7.0",
  "icons": {
    "16": "public/icons/icon16.png",
    "48": "public/icons/icon48.png",
    "128": "public/icons/icon128.png"
  },
  "commands": {
    "toggle-anchor": {
      "description": "Toggle anchor",
      "suggested_key": {
        "default": "Ctrl+S",
        "mac": "MacCtrl+S"
      }
    },
    "toggle-anchor-with-bookmark-mode": {
      "description": "Toggle anchor (bookmark)"
    },
    "toggle-anchor-with-history-mode": {
      "description": "Toggle anchor (history)"
    }
  },
  "background": {
    "service_worker": "dist/service_worker/index.js"
  },
  "permissions": [
    "bookmarks",
    "favicon",
    "history",
    "system.display",
    "tabs"
  ]
}