exchange_bookmarks

exchange_bookmarks

Button for exchanging selected bookmarks according to user defined mapping with other URIs. Useful e.g. when the bookmark toolbar is crowded because it allows exchanging / toggling them all at once, just as if there were a second row of bookmarks.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "47.0"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": "icons/star-empty-38.png",
    "default_title": "Exchange bookmarks!"
  },
  "description": "Button for exchanging selected bookmarks.",
  "homepage_url": "https://github.com/faerietree/firefox_ext__exchange_bookmarks",
  "icons": {
    "16": "icons/void-16.png",
    "48": "icons/void-48.png",
    "128": "icons/void-128.png"
  },
  "manifest_version": 2,
  "name": "exchange_bookmarks",
  "options_ui": {
    "page": "options/options.html"
  },
  "permissions": [
    "bookmarks",
    "storage"
  ],
  "version": "5.1resigned1"
}