Snow

Let it snow on you current page.

Snow란 무엇입니까?

Snow은(는) https://www.stefanvd.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Let it snow on you current page."입니다.

확장 프로그램 스크린샷

screenshot

Snow 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}