Wikipedia NoRefs

Wikipedia NoRefs

Toggle Wikipedia citation markers on and off

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Wikipedia NoRefs",
  "short_name": "WP NoRefs",
  "version": "0.2.0",
  "description": "Toggle Wikipedia citation markers on and off",
  "homepage_url": "https://github.com/jojje/wikipedia-norefs",
  "author": "jojje",
  "permissions": [
    "declarativeContent"
  ],
  "host_permissions": [
    "https://*.wikipedia.org/wiki/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.wikipedia.org/wiki/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "48": "icons/enabled-48-blue.png",
      "128": "icons/enabled-128-blue.png"
    }
  },
  "icons": {
    "48": "icons/enabled-48-blue.png",
    "128": "icons/enabled-128-blue.png"
  }
}