Fandom Enhance

Fandom Enhance

Removes bloat from any fandom.com wiki

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fandom Enhance",
  "version": "1.2.2",
  "icons": {
    "128": "icon.png"
  },
  "description": "Removes bloat from any fandom.com wiki",
  "content_scripts": [
    {
      "matches": [
        "*://*.fandom.com/wiki/*",
        "*://*.fandom.com/*/wiki/*"
      ],
      "js": [
        "script.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.fandom.com/wiki/*",
        "*://*.fandom.com/*/wiki/*"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_start"
    }
  ]
}