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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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\/*" ] } ] } |