Snow this website
Let It Snow Today
Snow this website란 무엇입니까?
Snow this website은(는) mastaleru.rafael에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Let It Snow Today"입니다.
확장 프로그램 스크린샷
Snow this website 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension add to your websites some snowflakes. You have the opportunity to catch them. You have 30 seconds to catch the snowflakes. When a snowflake is caught, another 2 snowflakes will appear on the screen.
확장 프로그램 기본 정보
이름 | |
ID | dhodhnbmihkikehapfaellcieljelgnp |
공식 URL | https://chrome.google.com/webstore/detail/snow-this-website/dhodhnbmihkikehapfaellcieljelgnp |
설명 | Let It Snow Today |
파일 크기 | 88.58 KB |
설치 횟수 | 654 |
현재 버전 | 0.0.2 |
최근 업데이트 | 2016-12-16 |
출시 날짜 | 2016-12-16 |
평점 | 3.50/5 총 8 개의 평점 |
개발자 | mastaleru.rafael |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://plusprivacy.com/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Snow this website", "description": "Let It Snow Today", "version": "0.0.2", "browser_action": { "default_icon": "icons\/icon48.png" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "all_frames": false, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery.js", "scripts\/snow.js", "content.js" ], "css": [ "snow.css" ] } ], "permissions": [ "activeTab", "storage", "tabs" ], "web_accessible_resources": [ "images\/*" ] } |