Bookmark Manager

Bookmark Manager

Bookmark sites, images, and videos to a gallery. Supports downloading videos from most sites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "short_name": "Bookmark Manager",
  "name": "Bookmark Manager",
  "version": "2.0.0",
  "minimum_chrome_version": "88",
  "description": "Bookmark sites, images, and videos to a gallery. Supports downloading videos from most sites.",
  "icons": {
    "16": "icons/icon.png",
    "48": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage",
    "contextMenus",
    "downloads"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scanner.js"
      ]
    }
  ],
  "action": {
    "default_title": "Bookmark Manager"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}