Examine source code of QuickFill: Smart Form Assistant

Inspect and view changes in QuickFill: Smart Form Assistant 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": "QuickFill: Smart Form Assistant",
  "version": "1.0",
  "description": "Automatically fill in web forms with customizable profiles and smart field detection.",
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png"
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "browser_action": {
    "default_icon": "icons/icon-48.png",
    "default_title": "QuickFill",
    "default_popup": "popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{5b794ebf-f6b4-4a2a-b149-b8c0cbe2ccf8}"
    }
  }
}