NoRef

NoRef

Copies URL without referral data.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "NoRef",
  "version": "2",
  "description": "Copies URL without referral data.",
  "icons": {
    "48": "./border-48.png"
  },
  "permissions": [
    "clipboardWrite",
    "storage"
  ],
  "action": {
    "default_icon": "./border-48.png",
    "default_title": "NoRef",
    "default_popup": "noRef.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/noref-2.0.c7e2a2bb.js"
      ]
    }
  ]
}