Examine source code of Wikipedia Time Travel

Inspect and view changes in Wikipedia Time Travel 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Wikipedia Time Travel",
  "version": "0.2",
  "author": "Ricardo Joaquinito",
  "description": "See how Wikipedia pages evolved over time.",
  "icons": {
    "48": "img/icons/wtt_icon.png"
  },
  "action": {
    "default_popup": "popup/wikipedia_time_travel.html",
    "default_icon": {
      "48": "img/icons/wtt_icon.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab"
  ]
}