Bookmark To Folder

Bookmark To Folder

Quickly bookmarks the current tab's website into one of a chosen set of favorite bookmark folders.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bookmark To Folder",
  "version": "1.0.1.0",
  "manifest_version": 3,
  "description": "Quickly bookmarks the current tab's website into one of a chosen set of favorite bookmark folders.",
  "action": {
    "default_icon": {
      "16": "icon16.png",
      "24": "icon24.png",
      "32": "icon32.png"
    },
    "default_popup": "popup.html",
    "default_title": "Bookmark To Folder"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "activeTab",
    "bookmarks",
    "storage"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+E",
        "mac": "Command+Shift+E",
        "chromeos": "Ctrl+Shift+E",
        "linux": "Ctrl+Shift+E"
      }
    }
  }
}