Examine source code of Wikipedia First

Inspect and view changes in Wikipedia First 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": "Wikipedia First",
  "version": "1.0",
  "description": "Reorders Google search results so Wikipedia is on top.",
  "icons": {
    "48": "icons/wiki-first-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.google.com/search*",
        "*://duckduckgo.com/*q=*"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "wikifirst@mzza.xyz"
    }
  }
}