Snowflake

Automate the completion of online forms!

Cos'è Snowflake?

Snowflake è un'estensione di Chrome sviluppata da Michael Page, e la sua funzione principale è "Automate the completion of online forms!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Snowflake

Scarica i file di estensione Snowflake 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

                        Snowflake can automate the completion of most online forms.

Highlights:
• Snowflake usage is private.
• Support for form variables that can be adjusted from the options page.
• The ability to auto run templates on a website that matches a particular URL or a regular expression.                    

Informazioni di Base sull'Estensione

Nome Snowflake Snowflake
ID ffjbmdacpilahnbipikkhdpglephcplk
URL Ufficiale https://chromewebstore.google.com/detail/snowflake/ffjbmdacpilahnbipikkhdpglephcplk
Descrizione Automate the completion of online forms!
Dimensione del File 425 KB
Conteggio Installazioni 31
Versione Corrente 1.0.2
Ultimo Aggiornamento 2021-09-02
Data di Pubblicazione 2021-08-30
Sviluppatore Michael Page
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://techion.com.au/privacy-policy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Snowflake",
    "description": "Automate the completion of online forms!",
    "version": "1.0.2",
    "manifest_version": 3,
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Snowflake",
        "default_icon": "icon.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}