Snowflake

Automate the completion of online forms!

Vad är Snowflake?

Snowflake är en Chrome-tillägg utvecklad av Michael Page, och dess huvudfunktion är "Automate the completion of online forms!".

Tilläggsskärmbilder

screenshot

Ladda ner Snowflake-förlängningens CRX-fil

Ladda ner Snowflake-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Snowflake Snowflake
ID ffjbmdacpilahnbipikkhdpglephcplk
Officiell webbadress https://chromewebstore.google.com/detail/snowflake/ffjbmdacpilahnbipikkhdpglephcplk
Beskrivning Automate the completion of online forms!
Filstorlek 425 KB
Antal Installationer 31
Aktuell Version 1.0.2
Senast Uppdaterad 2021-09-02
Publiceringsdatum 2021-08-30
Utvecklare Michael Page
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://techion.com.au/privacy-policy
Stödda Språk 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"
            ]
        }
    ]
}