Snow Pig

It's raining pigs, Hallelujah !

Was ist Snow Pig?

Snow Pig ist eine Chrome-Erweiterung, die von Honch 🐷 entwickelt wurde, und ihr Hauptmerkmal ist "It's raining pigs, Hallelujah !".

Erweiterungsscreenshots

screenshot

Snow Pig-Erweiterungs-CRX-Datei herunterladen

Laden Sie Snow Pig-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Snow Pig Snow Pig
ID knchbmnjngcmadffioojkkhlipecjekp
Offizielle URL https://chromewebstore.google.com/detail/snow-pig/knchbmnjngcmadffioojkkhlipecjekp
Beschreibung It's raining pigs, Hallelujah !
Dateigröße 3.27 MB
Installationsanzahl 14
Aktuelle Version 0.1.0
Letztes Update 2022-02-04
Veröffentlichungsdatum 2022-02-04
Entwickler Honch 🐷
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}