Snowflake

Automate the completion of online forms!

O que é Snowflake?

Snowflake é uma extensão do Chrome desenvolvida por Michael Page, e sua principal característica é "Automate the completion of online forms!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Snowflake

Baixe arquivos de extensão Snowflake no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Snowflake Snowflake
ID ffjbmdacpilahnbipikkhdpglephcplk
URL Oficial https://chromewebstore.google.com/detail/snowflake/ffjbmdacpilahnbipikkhdpglephcplk
Descrição Automate the completion of online forms!
Tamanho do Arquivo 425 KB
Contagem de Instalações 31
Versão Atual 1.0.2
Última Atualização 2021-09-02
Data de Publicação 2021-08-30
Desenvolvedor Michael Page
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://techion.com.au/privacy-policy
Idiomas Suportados 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"
            ]
        }
    ]
}