Skim the clipboard

Skim the clipboard

Clipboard filtering with regular expression

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "action": {
    "default_icons": {
      "16": "img/icon-16x16.png",
      "48": "img/icon-48x48.png",
      "64": "img/icon-64x64.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "default_locale": "en",
  "description": "__MSG_panel_label__",
  "icons": {
    "16": "img/icon-16x16.png",
    "48": "img/icon-48x48.png",
    "64": "img/icon-64x64.png"
  },
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "optional_permissions": [],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "storage",
    "contextMenus",
    "activeTab",
    "clipboardRead",
    "clipboardWrite"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.1.11",
  "commands": {
    "one": {
      "suggested_key": {
        "default": "Ctrl+Shift+Comma",
        "mac": "Command+Shift+Comma"
      },
      "description": "run shortkey one"
    },
    "two": {
      "suggested_key": {
        "default": "Ctrl+Shift+Period",
        "mac": "Command+Shift+Period"
      },
      "description": "run shortkey two"
    },
    "three": {
      "suggested_key": {
        "default": "Ctrl+Shift+1",
        "mac": "Command+Shift+1"
      },
      "description": "run shortkey three"
    },
    "four": {
      "suggested_key": {
        "default": "Ctrl+Shift+2",
        "mac": "Command+Shift+2"
      },
      "description": "run shortkey four"
    }
  }
}