Let It Snow
Add cute snowflakes to your browser on every page.
ما هو Let It Snow؟
Let It Snow هو إضافة Chrome تم تطويرها بواسطة kravse، والميزة الرئيسية لها هي "Add cute snowflakes to your browser on every page.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Let It Snow
قم بتنزيل ملفات الامتداد Let It Snow بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" ] } ] } |