Snow Pig

It's raining pigs, Hallelujah !

Snow Pig क्या है?

Snow Pig Honch 🐷 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "It's raining pigs, Hallelujah !"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Snow Pig एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Snow Pig Snow Pig
ID knchbmnjngcmadffioojkkhlipecjekp
आधिकारिक URL https://chromewebstore.google.com/detail/snow-pig/knchbmnjngcmadffioojkkhlipecjekp
विवरण It's raining pigs, Hallelujah !
फ़ाइल का आकार 3.27 MB
स्थापना संख्या 14
वर्तमान संस्करण 0.1.0
अंतिम अपडेट 2022-02-04
प्रकाशन तिथि 2022-02-04
डेवलपर Honch 🐷
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    }
}