Examine source code of Web Technology Notifier

Inspect and view changes in Web Technology Notifier 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": 2,
  "name": "Web Technology Notifier",
  "version": "1.1.2",
  "description": "Displays the Web technology of the current page.",
  "icons": {
    "128": "web_technology_notifier-128x128.png"
  },
  "permissions": [
    "http://*/*"
  ],
  "content_scripts": [
    {
      "js": [
        "web_technology_notifier.js"
      ],
      "matches": [
        "http://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "page_action": {},
  "author": "Cyril Wack",
  "background": {
    "scripts": [
      "web_technologies.js",
      "event_page.js"
    ],
    "persistent": false
  },
  "short_name": "Web Technology"
}