Snow
Let it snow on you current page.
Snowคืออะไร?
Snow เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.stefanvd.net และคุณลักษณะหลักของมันคือ "Let it snow on you current page."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Snow
ดาวน์โหลดไฟล์ส่วนขยาย Snow ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
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" ] } ] } |