SkyCrypt Themer
Create themes for SkyCrypt
ما هو SkyCrypt Themer؟
SkyCrypt Themer هو إضافة Chrome تم تطويرها بواسطة Cookie_Wookie_7، والميزة الرئيسية لها هي "Create themes for SkyCrypt".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة SkyCrypt Themer
قم بتنزيل ملفات الامتداد SkyCrypt Themer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
SkyCrypt Themer lets you create and share Themes for SkyCrypt. Whether you are a SkyCrypt developer trying to make a new theme or a normal user that wants to add some color of your own SkyCrypt Themer is for you.
معلومات أساسية عن التمديد
الاسم | |
ID | eeeichgfigdfdmnbmfbeggaolpnhbffc |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/skycrypt-themer/eeeichgfigdfdmnbmfbeggaolpnhbffc |
الوصف | Create themes for SkyCrypt |
حجم الملف | 84.36 KB |
عدد التثبيتات | 42 |
النسخة الحالية | 3.0.0 |
آخر تحديث | 2022-01-28 |
تاريخ النشر | 2020-12-26 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Cookie_Wookie_7 |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/nstringham/SkyCrypt-Themer |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "SkyCrypt Themer", "version": "3.0.0", "description": "Create themes for SkyCrypt", "permissions": [ "storage", "declarativeContent" ], "icons": { "128": "assets\/logo-128.png" }, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/sky.shiiyu.moe\/*" ], "js": [ "import-contentScript.js" ], "run_at": "document_idle" } ], "action": { "default_popup": "popup.html" }, "web_accessible_resources": [ { "resources": [ "chunks\/*-*.js", "contentScript.js" ], "matches": [ "https:\/\/sky.shiiyu.moe\/*" ] } ] } |