Bookmark Switcher

Bookmark Switcher

Switch between several bookmark toolbars!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Bookmark Switcher",
  "version": "2.1.1",
  "homepage_url": "https://github.com/Kapcash",
  "description": "__MSG_extDescription__",
  "author": "Florent Catiau-Tristant",
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "{b49fb79b-230f-4846-bfc4-11c9c99d41d8}",
      "strict_min_version": "80.0"
    }
  },
  "permissions": [
    "bookmarks",
    "storage"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Switch bookmark bar",
    "default_icon": {
      "16": "icons/16.png",
      "48": "icons/48.png"
    }
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "commands": {
    "next_bar": {
      "suggested_key": {
        "mac": "Alt+Space",
        "default": "Ctrl+Space"
      },
      "description": "Switch bookmark toolbars"
    }
  },
  "content_security_policy": "script-src 'self' ; object-src 'self'"
}