Marqly - Bookmark Manager

Marqly - Bookmark Manager

All-in-one bookmark manager

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Marqly - Bookmark Manager",
  "description": "All-in-one bookmark manager",
  "version": "5.0.3",
  "background": {
    "service_worker": "/background.js"
  },
  "action": {},
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "64": "icons/icon_64.png",
    "128": "icons/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/lib/jquery.js",
        "/content.js"
      ],
      "css": [
        "/hoverTools/index.css"
      ],
      "all_frames": true
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://app.marqly.com/*"
    ]
  },
  "permissions": [
    "storage",
    "tabs",
    "contextMenus",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "commands": {
    "execute-highlight": {
      "suggested_key": {
        "windows": "Ctrl+Shift+H",
        "mac": "Ctrl+Shift+H"
      },
      "description": "Highlight selected text"
    },
    "toggle-highlighter-cursor": {
      "description": "Toggle the auto-marker"
    },
    "create-bookmark": {
      "description": "Create new bookmark",
      "suggested_key": {
        "windows": "Ctrl+Shift+S",
        "mac": "Ctrl+Shift+S"
      }
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.png",
        "images/*.svg",
        "hoverTools/*",
        "popup.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}