Quick Pocket

Quick Pocket

Your pocket links in a popup, Inspired from the old pocket extension which was discontinued

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Quick Pocket",
  "version": "1.8",
  "description": "Your pocket links in a popup, Inspired from the old pocket extension which was discontinued",
  "manifest_version": 3,
  "update_URL": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "img/Icon-16.png",
      "32": "img/Icon-32.png",
      "48": "img/Icon-48.png",
      "128": "img/Icon-128.png"
    }
  },
  "icons": {
    "16": "img/Icon-16.png",
    "32": "img/Icon-32.png",
    "48": "img/Icon-48.png",
    "128": "img/Icon-128.png"
  },
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": true
  },
  "permissions": [
    "storage",
    "contextMenus",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "http://getpocket.com/*",
    "https://getpocket.com/*"
  ],
  "commands": {
    "savePage": {
      "suggested_key": {
        "default": "Alt+P",
        "mac": "Alt+P"
      },
      "description": "Save page to Pocket"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}