Snowflake

Automate the completion of online forms!

Was ist Snowflake?

Snowflake ist eine Chrome-Erweiterung, die von Michael Page entwickelt wurde, und ihr Hauptmerkmal ist "Automate the completion of online forms!".

Erweiterungsscreenshots

screenshot

Snowflake-Erweiterungs-CRX-Datei herunterladen

Laden Sie Snowflake-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Snowflake Snowflake
ID ffjbmdacpilahnbipikkhdpglephcplk
Offizielle URL https://chromewebstore.google.com/detail/snowflake/ffjbmdacpilahnbipikkhdpglephcplk
Beschreibung Automate the completion of online forms!
Dateigröße 425 KB
Installationsanzahl 31
Aktuelle Version 1.0.2
Letztes Update 2021-09-02
Veröffentlichungsdatum 2021-08-30
Entwickler Michael Page
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://techion.com.au/privacy-policy
Unterstützte Sprachen 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"
            ]
        }
    ]
}