Clipps - Recent clipboard history

Clipps - Recent clipboard history

Quick access to your recently copied text

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_EXT_NAME__",
  "description": "__MSG_EXT_DESCRIPTION__",
  "version": "1.0.2",
  "manifest_version": 3,
  "minimum_chrome_version": "109",
  "default_locale": "en",
  "permissions": [
    "storage",
    "offscreen",
    "contextMenus",
    "clipboardWrite"
  ],
  "icons": {
    "16": "images/icon16.png",
    "24": "images/icon24.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content-script.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}