form input generator

form input generator

Generate random form input based on input type. Input will be saved into local storage automatically

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "form input generator",
  "description": "Generate random form input based on input type. Input will be saved into local storage automatically",
  "version": "2.1.5",
  "icons": {
    "128": "icon_180.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Form Input Generator"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "myscript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "declarativeContent",
    "tabs"
  ]
}