form input generator

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

Cos'è form input generator?

form input generator è un'estensione di Chrome sviluppata da sabbir, e la sua funzione principale è "Generate random form input based on input type. Input will be saved into local storage automatically".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione form input generator

Scarica i file di estensione form input generator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome form input generator form input generator
ID ipcomhegikknbhpcfhkjaimmgpagmfof
URL Ufficiale https://chromewebstore.google.com/detail/form-input-generator/ipcomhegikknbhpcfhkjaimmgpagmfof
Descrizione Generate random form input based on input type. Input will be saved into local storage automatically
Dimensione del File 19.61 KB
Conteggio Installazioni 50
Versione Corrente 2.1.5
Ultimo Aggiornamento 2020-11-02
Data di Pubblicazione 2019-11-05
Sviluppatore sabbir
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}