Snow

Let it snow on you current page.

Snow क्या है?

Snow https://www.stefanvd.net द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Let it snow on you current page."।

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

screenshot

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

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

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

                        With this content script, all the page will show falling snowflakes.
Thanks also to Scott Schiller for his snowstorm code - http://schillmania.com

Note:
- When you uninstall this extension, restart also your browser. (then it's completely gone)
- Normal you can see this on all website, but some website block this, (or can't see it great, the example they use a white background)
- The icon is created by myself

Learn more about the project:
https://www.stefanvd.net

Required Permissions:
"activeTabs":
This is needed for the following features: to show you the snow script in the current open tab page

<<< Extension note >>>
This is a background script, so it will be injected to all website you are watching.

To disable or remove this extension follow the steps below:
1. Go to chrome://extensions/
2. Search in the list for the extension "Snow"
3. Click the remove (or disable) button
4. Remove your cache file (temp/cookies)
5. Restart the browser                    

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

नाम Snow Snow
ID kdcgdhlccojbnonmhcioigcdodakjcmh
आधिकारिक URL https://chromewebstore.google.com/detail/snow/kdcgdhlccojbnonmhcioigcdodakjcmh
विवरण Let it snow on you current page.
फ़ाइल का आकार 45.29 KB
स्थापना संख्या 8,187
वर्तमान संस्करण 1.1
अंतिम अपडेट 2023-08-25
प्रकाशन तिथि 2019-08-25
रेटिंग 3.60/5 कुल 548 रेटिंग्स
डेवलपर https://www.stefanvd.net
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.stefanvd.net
सहायता पृष्ठ URL https://www.stefanvd.net/support
गोपनीयता नीति पृष्ठ URL https://www.stefanvd.net/privacy
समर्थित भाषाएँ en,nl,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "default_locale": "en",
    "version": "1.1",
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "snowstorm-min.js"
            ]
        }
    ]
}