Snow Extension
Chrome Extension for making it snow in your browser!
What is Snow Extension?
Snow Extension is a Chrome extension developed by Snow Extension, and its main feature is "Chrome Extension for making it snow in your browser!".
Extension Screenshots
Download Snow Extension Extension CRX File
Download Snow Extension 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
Make your browser christmas ready by making it snow ❄️
Extension Basic Information
Name | Snow Extension |
ID | hngdnbnepjjamanhmkgolabelaaladjk |
Official URL | https://chromewebstore.google.com/detail/snow-extension/hngdnbnepjjamanhmkgolabelaaladjk |
Description | Chrome Extension for making it snow in your browser! |
File Size | 56.72 KB |
Installation Count | 2,303 |
Current Version | 1.1.0 |
Last Updated | 2020-11-03 |
Publish Date | 2020-10-27 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Snow Extension |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Snow Extension", "description": "Chrome Extension for making it snow in your browser!", "manifest_version": 2, "version": "1.1.0", "icons": { "16": "icon16.png", "32": "icon32.png", "64": "icon64.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "storage" ] } |