Examine source code of Wiews

Inspect and view changes in Wiews source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "version": "1.1",
  "name": "Wiews",
  "short_name": "Wiews",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "*://wikimedia.org/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.wikipedia.org/*",
        "*://*.wikimedia.org/*",
        "*://*.wikiwand.com/*"
      ],
      "js": [
        "functions.js"
      ]
    },
    {
      "matches": [
        "*://*.wikipedia.org/*",
        "*://*.wikimedia.org/*"
      ],
      "js": [
        "wiews.js"
      ]
    },
    {
      "matches": [
        "*://*.wikiwand.com/*"
      ],
      "js": [
        "wikiwand.js"
      ]
    }
  ]
}