Snowflake

Automate the completion of online forms!

What is Snowflake?

Snowflake is a Chrome extension developed by Michael Page, and its main feature is "Automate the completion of online forms!".

Extension Screenshots

screenshot

Download Snowflake Extension CRX File

Download Snowflake 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

                        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.                    

Extension Basic Information

Name Snowflake Snowflake
ID ffjbmdacpilahnbipikkhdpglephcplk
Official URL https://chromewebstore.google.com/detail/snowflake/ffjbmdacpilahnbipikkhdpglephcplk
Description Automate the completion of online forms!
File Size 425 KB
Installation Count 31
Current Version 1.0.2
Last Updated 2021-09-02
Publish Date 2021-08-30
Developer Michael Page
Email [email protected]
Payment Type free
Privacy Policy Page URL https://techion.com.au/privacy-policy
Supported Languages 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"
            ]
        }
    ]
}