Let It Snow
Add cute snowflakes to your browser on every page.
什么是Let It Snow?
Let It Snow是由kravse开发的Chrome扩展程序,该扩展的主要功能是“Add cute snowflakes to your browser on every page.”。
扩展截图
下载Let It Snow扩展crx文件
下载Let It Snow扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Simple animation to add snowflakes to any website. Toggle it on/off whenever you want.
扩展基本信息
名称 | |
ID | himjfahoodiglodlcapifigneoepnkbk |
官方URL | https://chrome.google.com/webstore/detail/let-it-snow/himjfahoodiglodlcapifigneoepnkbk |
简介 | Add cute snowflakes to your browser on every page. |
文件大小 | 6.37 MB |
安装次数 | 19 |
当前版本 | 0.1.3 |
更新时间 | 2020-12-08 |
上架时间 | 2020-12-08 |
开发者 | kravse |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://kravse.dev |
帮助页面URL | https://github.com/kravse/let-it-snow/issues |
支持的语言 | 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" ] } ] } |