MCWiki Community Sidebar Remover

MCWiki Community Sidebar Remover

Removes the Community Sidebar from the Minecraft Wiki site. Now works with the upcoming Curse-imposed Minecraft Wiki URL change.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MCWiki Community Sidebar Remover",
  "description": "Removes the Community Sidebar from the Minecraft Wiki site. Now works with the upcoming Curse-imposed Minecraft Wiki URL change.",
  "version": "1.1.1",
  "content_scripts": [
    {
      "matches": [
        "http://www.minecraftwiki.net/wiki/*",
        "http://minecraft.gamepedia.com/*"
      ],
      "exclude_matches": [
        "http://www.minecraftwiki.net/wiki/Minecraft_Wiki"
      ],
      "js": [
        "sidebar.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "http://www.minecraftwiki.net/wiki/*",
        "http://minecraft.gamepedia.com/*"
      ],
      "js": [
        "headerfooter.js"
      ],
      "run_at": "document_end"
    }
  ]
}