Examine source code of QRCode Web Extension

Inspect and view changes in QRCode Web Extension 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": "0.0.3",
  "name": "QRCode Web Extension",
  "description": "Show QRCode with current URL.",
  "author": "ziguifrido",
  "browser_action": {
    "default_title": "QRCode Web Extension",
    "default_popup": "index.html",
    "default_icon": "icon.jpg"
  },
  "permissions": [
    "tabs"
  ],
  "icons": {
    "48": "icon.jpg"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "index.js"
      ]
    }
  ]
}