Remove Citations

Remove Citations

Remove the citations found on Wikipedia pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Remove Citations",
  "description": "Remove the citations found on Wikipedia pages",
  "version": "1.3",
  "background": {
    "scripts": [
      "src/background.js"
    ]
  },
  "page_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.wikipedia.org/*"
      ],
      "js": [
        "src/content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "https://*.wikipedia.org/*",
    "https://ajax.googleapis.com/"
  ]
}