Examine source code of Web Form Filler

Inspect and view changes in Web Form Filler 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",
  "content_scripts": [
    {
      "js": [
        "javascripts/jquery-1.9.1.min.js",
        "javascripts/deserialize.js",
        "javascripts/content_script.js",
        "javascripts/mousetrap.min.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ],
      "run_at": "document_start"
    }
  ],
  "name": "Web Form Filler",
  "version": "2.0.0",
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "description": "Easily save and fill web forms",
  "action": {
    "default_icon": "images/48.png",
    "default_title": "Web Form Filler",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "javascripts/background.js"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "manifest_version": 3
}