Examine source code of FFfD: Form Filler For Devs

Inspect and view changes in FFfD: Form Filler For Devs 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": "FFfD: Form Filler For Devs",
  "version": "1.0",
  "description": "A highly useful extension that fills up any form with random values. It can be used extensively for development and testing.",
  "icons": {
    "48": "assets/logo.ico"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "*://*.localhost/*"
      ],
      "js": [
        "filler.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{0d801ab1-4436-426c-83ae-a25a9dba1bd0}"
    }
  }
}