WICS
An extension to add and manage custom items to WaniKani
Cos'è WICS?
WICS è un'estensione di Chrome sviluppata da gorbitgames, e la sua funzione principale è "An extension to add and manage custom items to WaniKani".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione WICS
Scarica i file di estensione WICS in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
WICS makes it possible to harness the power of the WaniKani srs system for your own items.
Informazioni di Base sull'Estensione
Nome | WICS |
ID | hpcamdcdkibakdjhoadmihiplbkgelln |
URL Ufficiale | https://chromewebstore.google.com/detail/wics/hpcamdcdkibakdjhoadmihiplbkgelln |
Descrizione | An extension to add and manage custom items to WaniKani |
Dimensione del File | 855 KB |
Conteggio Installazioni | 27 |
Versione Corrente | 0.1.9 |
Ultimo Aggiornamento | 2023-01-18 |
Data di Pubblicazione | 2023-01-09 |
Sviluppatore | gorbitgames |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/gorbit99/wics-extension |
Lingue Supportate | 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" ] } |