Snow Pig

It's raining pigs, Hallelujah !

O que é Snow Pig?

Snow Pig é uma extensão do Chrome desenvolvida por Honch 🐷, e sua principal característica é "It's raining pigs, Hallelujah !".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Snow Pig

Baixe arquivos de extensão Snow Pig 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

                        It's raining pigs, Hallelujah !
Winter is coming, but there are only pigs.

This extensions will display a "snow pig" (pig falling everywhere in every direction) on every web pages you visit. You can look at the screenshot to see how pigs are displayed.

This extensions needs host_permissions "*://*/*" (it means "every website") to include a CSS and JS script that will display the "snow pig". This extensions does not need any other permission.

The "snow pig" is rendered in full CSS, we use JS only to inject html emojies in the current web page, and then animate them with CSS (thanks to https://github.com/Artimon/pure-css-snowfall).

If you have any concern or question about the extension, please leave a comment, we'll be happy to answer.                    

Informações Básicas da Extensão

Nome Snow Pig Snow Pig
ID knchbmnjngcmadffioojkkhlipecjekp
URL Oficial https://chromewebstore.google.com/detail/snow-pig/knchbmnjngcmadffioojkkhlipecjekp
Descrição It's raining pigs, Hallelujah !
Tamanho do Arquivo 3.27 MB
Contagem de Instalações 14
Versão Atual 0.1.0
Última Atualização 2022-02-04
Data de Publicação 2022-02-04
Desenvolvedor Honch 🐷
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Snow Pig",
    "version": "0.1.0",
    "description": "It's raining pigs, Hallelujah !",
    "permissions": [],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "src\/onload.js"
            ],
            "css": [
                "src\/snowfall.css"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "src\/head.png"
    }
}