WICS
An extension to add and manage custom items to WaniKani
WICSとは何ですか?
WICSはgorbitgamesによって開発されたChromeの拡張機能で、その主な機能は「An extension to add and manage custom items to WaniKani」です。
拡張機能のスクリーンショット
WICS拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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" ] } |