The New Wiki

The New Wiki

Beautiful and useful tools for your Wikipedia

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.0.0",
  "name": "__MSG_AppName__",
  "description": "__MSG_AppDesc__",
  "default_locale": "en",
  "icons": {
    "16": "/img/icon-16.png",
    "48": "/img/icon-48.png",
    "128": "/img/icon-128.png",
    "256": "/img/icon-256.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "/img/icon-16.png",
      "32": "/img/icon-32.png"
    }
  },
  "background": {
    "scripts": [
      "/content/js/update-conf.js",
      "/content/js/update.min.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.wikipedia.org/wiki/*"
      ],
      "exclude_matches": [
        "*://*.wikipedia.org/wiki/*?nord=true",
        "*://*.wikipedia.org/wiki/*:*"
      ],
      "run_at": "document_start",
      "js": [
        "/content/js/bootstrap.js"
      ]
    }
  ],
  "permissions": [
    "https://*.thenewwiki.com/*"
  ]
}