WICS
An extension to add and manage custom items to WaniKani
Qu'est-ce que WICS ?
WICS est une extension Chrome développée par gorbitgames, et sa fonction principale est "An extension to add and manage custom items to WaniKani".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension WICS
Téléchargez les fichiers d'extension WICS au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
WICS makes it possible to harness the power of the WaniKani srs system for your own items.
Informations de Base sur l'Extension
Nom | WICS |
ID | hpcamdcdkibakdjhoadmihiplbkgelln |
URL Officiel | https://chromewebstore.google.com/detail/wics/hpcamdcdkibakdjhoadmihiplbkgelln |
Description | An extension to add and manage custom items to WaniKani |
Taille du Fichier | 855 KB |
Nombre d'Installations | 27 |
Version Actuelle | 0.1.9 |
Dernière Mise à Jour | 2023-01-18 |
Date de Publication | 2023-01-09 |
Développeur | gorbitgames |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/gorbit99/wics-extension |
Langues Prises en Charge | 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" ] } |