Cherry Browser extension

Cherry Browser extension

Browser extension for Cherry the open source self-hostable bookmark service

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cherry Browser extension",
  "description": "Browser extension for Cherry the open source self-hostable bookmark service",
  "version": "0.0.6",
  "options_ui": {
    "page": "options.html",
    "browser_style": false,
    "open_in_tab": true
  },
  "icons": {
    "16": "/images/leaf-16.png",
    "32": "/images/leaf-32.png",
    "48": "/images/leaf-48.png",
    "128": "/images/leaf-128.png"
  },
  "manifest_version": 3,
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/leaf-16.png",
      "32": "/images/leaf-32.png",
      "48": "/images/leaf-48.png",
      "128": "/images/leaf-128.png"
    }
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      }
    }
  }
}