Form Templates

Form Templates

Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Form Templates",
  "version": "1.0",
  "description": "Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).",
  "icons": {
    "128": "icon.png"
  },
  "browser_action": {
    "default_popup": "popup.htm"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "jquery.min.js",
        "jquery.devform.js",
        "jquery.hotkeys.js",
        "jquery.dummy.js",
        "init.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ]
}