Pxlet Bookmarklet

Pxlet Bookmarklet

This is an extension to help you bookmark any link into Pxlet.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pxlet Bookmarklet",
  "version": "1.2.0",
  "description": "This is an extension to help you bookmark any link into Pxlet.com",
  "manifest_version": 3,
  "icons": {
    "16": "image/logo.png",
    "32": "image/logo.png",
    "64": "image/logo.png",
    "128": "image/logo.png"
  },
  "permissions": [
    "contextMenus",
    "declarativeContent",
    "notifications",
    "tabs"
  ],
  "host_permissions": [
    "*://www.pxlet.com/*",
    "*://pxlet.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "image/logo.png",
      "32": "image/logo.png",
      "64": "image/logo.png",
      "128": "image/logo.png"
    }
  }
}