Examine source code of WikiLinks - Linkable Sections in Wikipedia

Inspect and view changes in WikiLinks - Linkable Sections in Wikipedia 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,
  "name": "WikiLinks - Linkable Sections in Wikipedia",
  "version": "3.1.2",
  "description": "Turns all Wikipedia (and Fandom) sections into links. To copy a link, click the URL icon left to any section.",
  "icons": {
    "48": "icons/logo-sm.png",
    "96": "icons/logo-lg.png"
  },
  "options_ui": {
    "page": "options/options.html"
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_icon": "icons/logo-sm.png",
    "default_title": "WikiLinks",
    "default_popup": "options/options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.wikipedia.org/wiki/*",
        "*://*.fandom.com/*/wiki/*"
      ],
      "js": [
        "index.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}