Dummy Form Filler

Dummy Form Filler

One click to populate HTML forms with dummy data. Works out of the box.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Dummy Form Filler",
  "short_name": "Dummy FF",
  "description": "One click to populate HTML forms with dummy data. Works out of the box.",
  "version": "1.5.0",
  "homepage_url": "https://github.com/ptomaszek/dummy-form-filler",
  "icons": {
    "48": "icons/seahorse_48.png",
    "64": "icons/seahorse_64.png",
    "96": "icons/seahorse_96.png",
    "128": "icons/seahorse_128.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "action": {
    "default_icon": {
      "48": "icons/seahorse_48.png",
      "64": "icons/seahorse_64.png",
      "96": "icons/seahorse_96.png",
      "128": "icons/seahorse_128.png"
    },
    "default_title": "Dummy Form Filler"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://*/*.xml",
        "file:///*/*.xml"
      ],
      "js": [
        "options/default-options.js",
        "js-ext/chance.min.js",
        "js/dummy-options.js",
        "js/dummy-logger.js",
        "js/dummy-augur.js",
        "js/dummy-limits.js",
        "js/dummy-generator.js",
        "js/dummy-engine.js",
        "js/main.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options/options.html"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+D"
      },
      "description": "Run Dummy, run!"
    }
  }
}