Swappable

Swappable

A bookmark bar swapper, allowing you to switch between multiple bookmark bars such as 'Work' and 'Personal'

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Swappable",
  "version": "1.0",
  "description": "A bookmark bar swapper, allowing you to switch between multiple bookmark bars such as 'Work' and 'Personal'",
  "permissions": [
    "bookmarks"
  ],
  "background": {
    "scripts": [
      "swappable.js"
    ]
  },
  "browser_action": {
    "default_title": "My Bookmarks",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'"
}