form input generator

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

What is form input generator?

form input generator is a Chrome extension developed by sabbir, and its main feature is "Generate random form input based on input type. Input will be saved into local storage automatically".

Extension Screenshots

screenshot

Download form input generator Extension CRX File

Download form input generator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Generate random form input. Creating random form data based on input type. No setting will be needed, just click and enjoy.                    

Extension Basic Information

Name form input generator form input generator
ID ipcomhegikknbhpcfhkjaimmgpagmfof
Official URL https://chromewebstore.google.com/detail/form-input-generator/ipcomhegikknbhpcfhkjaimmgpagmfof
Description Generate random form input based on input type. Input will be saved into local storage automatically
File Size 19.61 KB
Installation Count 50
Current Version 2.1.5
Last Updated 2020-11-02
Publish Date 2019-11-05
Developer sabbir
Email [email protected]
Payment Type free
Supported Languages en
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": [
                ""
            ],
            "js": [
                "myscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "declarativeContent",
        "tabs"
    ]
}