BookmarksDropDown

BookmarksDropDown

Causes a clickable menu of current Bookmarks Toolbar items to appear when the mouse pointer is above the Firefox viewport (the area which displays web content).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_addonName__",
  "version": "2.5.0",
  "description": "__MSG_addonDescription__",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "63.0a1"
    }
  },
  "homepage_url": "https://addons.mozilla.org/en-US/firefox/addon/bookmarksdropdown/",
  "developer": {
    "name": "PaulJayD",
    "url": "https://addons.mozilla.org/en-US/firefox/addon/bookmarksdropdown/"
  },
  "default_locale": "en_US",
  "permissions": [
    "<all_urls>",
    "https://www.google.com/s2/favicons?*",
    "activeTab",
    "bookmarks",
    "storage",
    "tabs"
  ],
  "options_ui": {
    "page": "bmddoptions.html"
  },
  "icons": {
    "48": "icons/bookmarksdropdown.ico"
  },
  "background": {
    "scripts": [
      "bmddbackground.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "*://*.mozilla.org/*"
      ],
      "match_about_blank": true,
      "all_frames": false,
      "run_at": "document_start",
      "js": [
        "bmddcontent.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "icons/bookmarksdropdown.ico",
    "icons/downtriangle48.png",
    "icons/fisheye48.png"
  ]
}