WICS
An extension to add and manage custom items to WaniKani
WICS क्या है?
WICS gorbitgames द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension to add and manage custom items to WaniKani"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में WICS एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |