Bookmark Bar Switcher

Bookmark Bar Switcher

Conveniently switch between multiple bookmark bars.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Daniel Purtov",
  "description": "Conveniently switch between multiple bookmark bars.",
  "name": "Bookmark Bar Switcher",
  "version": "1.5.1",
  "manifest_version": 3,
  "permissions": [
    "bookmarks",
    "storage"
  ],
  "action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    },
    "default_popup": "src/popup/index.html",
    "default_title": "Bookmark Bar Switcher"
  },
  "background": {
    "service_worker": "src/background/main.js",
    "type": "module"
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "commands": {
    "next-bar": {
      "suggested_key": {
        "default": "Ctrl+Down"
      },
      "description": "Switch to next bookmark bar."
    },
    "previous-bar": {
      "suggested_key": {
        "default": "Ctrl+Up"
      },
      "description": "Switch to previous bookmark bar."
    },
    "switch-to-1": {
      "suggested_key": {
        "default": "Ctrl+Shift+1"
      },
      "description": "Switch to 1. bookmark bar."
    },
    "switch-to-2": {
      "suggested_key": {
        "default": "Ctrl+Shift+2"
      },
      "description": "Switch to 2. bookmark bar."
    },
    "switch-to-3": {
      "description": "Switch to 3. bookmark bar."
    },
    "switch-to-4": {
      "description": "Switch to 4. bookmark bar."
    },
    "switch-to-5": {
      "description": "Switch to 5. bookmark bar."
    },
    "switch-to-6": {
      "description": "Switch to 6. bookmark bar."
    },
    "switch-to-7": {
      "description": "Switch to 7. bookmark bar."
    },
    "switch-to-8": {
      "description": "Switch to 8. bookmark bar."
    },
    "switch-to-9": {
      "description": "Switch to 9. bookmark bar."
    },
    "switch-to-10": {
      "description": "Switch to 10. bookmark bar."
    }
  }
}