WICS
An extension to add and manage custom items to WaniKani
WICSคืออะไร?
WICS เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gorbitgames และคุณลักษณะหลักของมันคือ "An extension to add and manage custom items to WaniKani"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WICS
ดาวน์โหลดไฟล์ส่วนขยาย WICS ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
WICS makes it possible to harness the power of the WaniKani srs system for your own items.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | WICS |
ID | hpcamdcdkibakdjhoadmihiplbkgelln |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/wics/hpcamdcdkibakdjhoadmihiplbkgelln |
คำอธิบาย | An extension to add and manage custom items to WaniKani |
ขนาดไฟล์ | 855 KB |
จำนวนการติดตั้ง | 27 |
เวอร์ชันปัจจุบัน | 0.1.9 |
อัปเดตครั้งล่าสุด | 2023-01-18 |
วันที่เผยแพร่ | 2023-01-09 |
ผู้พัฒนา | gorbitgames |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/gorbit99/wics-extension |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WICS", "description": "An extension to add and manage custom items to WaniKani", "version": "0.1.9", "manifest_version": 3, "icons": { "16": "icon\/16.png", "32": "icon\/32.png", "48": "icon\/48.png", "96": "icon\/96.png", "128": "icon\/128.png" }, "action": { "default_popup": "src\/popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.wanikani.com\/review\/session", "https:\/\/*.wanikani.com\/lesson\/session" ], "js": [ "src\/review.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/*.wanikani.com\/*" ], "exclude_matches": [ "https:\/\/*.wanikani.com\/review\/session", "https:\/\/*.wanikani.com\/lesson\/session" ], "js": [ "src\/dashboard.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "src\/monkeyPatching\/jquery.js", "src\/monkeyPatching\/fetch.js" ], "matches": [ "https:\/\/*.wanikani.com\/*" ] } ], "permissions": [ "unlimitedStorage", "storage", "tabs", "scripting", "activeTab" ] } |