Fluid Bookmarks

Fluid Bookmarks

Dropdown bookmarks bar with numerous options and customization.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Fluid Bookmarks",
  "description": "Dropdown bookmarks bar with numerous options and customization.",
  "version": "1.0",
  "manifest_version": 2,
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "src/bg/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "thirdParty/jquery.3.3.1.js",
        "src/bg/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "icons/icon48.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "bookmarksbar.html",
    "style.css"
  ],
  "permissions": [
    "contextMenus",
    "storage",
    "activeTab",
    "tabs",
    "http://*/*",
    "https://*/*",
    "bookmarks"
  ]
}