Snip

Snip

The simplest way to highlight and share text on the internet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.3.0",
  "name": "Snip",
  "description": "The simplest way to highlight and share text on the internet.",
  "permissions": [
    "clipboardWrite"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "node_modules/@webcomponents/custom-elements/custom-elements.min.js",
        "prepare.js",
        "fragment-generation-utils.js",
        "link-generator.js",
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "assets/16-icon.png",
    "32": "assets/32-icon.png",
    "48": "assets/48-icon.png",
    "128": "assets/128-icon.png"
  }
}