Let It Snow
Add cute snowflakes to your browser on every page.
What is Let It Snow?
Let It Snow is a Chrome extension developed by kravse, and its main feature is "Add cute snowflakes to your browser on every page.".
Extension Screenshots
Download Let It Snow Extension CRX File
Download Let It Snow extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Simple animation to add snowflakes to any website. Toggle it on/off whenever you want.
Extension Basic Information
Name | |
ID | himjfahoodiglodlcapifigneoepnkbk |
Official URL | https://chrome.google.com/webstore/detail/let-it-snow/himjfahoodiglodlcapifigneoepnkbk |
Description | Add cute snowflakes to your browser on every page. |
File Size | 6.37 MB |
Installation Count | 19 |
Current Version | 0.1.3 |
Last Updated | 2020-12-08 |
Publish Date | 2020-12-08 |
Developer | kravse |
[email protected] | |
Payment Type | free |
Extension Website | https://kravse.dev |
Help Page URL | https://github.com/kravse/let-it-snow/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Let It Snow", "developer": { "name": "Jared Krause", "url": "https:\/\/kravse.dev" }, "version": "0.1.3", "description": "Add cute snowflakes to your browser on every page.", "icons": { "16": "images\/icon16.png", "48": "images\/icon.png", "128": "images\/icon128.png" }, "permissions": [ "storage", "activeTab" ], "browser_action": { "default_icon": "images\/icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_idle", "js": [ "assets\/christmas.js" ], "css": [ "assets\/main.css" ] } ] } |