WICS
An extension to add and manage custom items to WaniKani
Was ist WICS?
WICS ist eine Chrome-Erweiterung, die von gorbitgames entwickelt wurde, und ihr Hauptmerkmal ist "An extension to add and manage custom items to WaniKani".
Erweiterungsscreenshots
WICS-Erweiterungs-CRX-Datei herunterladen
Laden Sie WICS-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
WICS makes it possible to harness the power of the WaniKani srs system for your own items. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hpcamdcdkibakdjhoadmihiplbkgelln |
| Offizielle URL | https://chromewebstore.google.com/detail/wics/hpcamdcdkibakdjhoadmihiplbkgelln |
| Beschreibung | An extension to add and manage custom items to WaniKani |
| Dateigröße | 855 KB |
| Installationsanzahl | 27 |
| Aktuelle Version | 0.1.9 |
| Letztes Update | 2023-01-18 |
| Veröffentlichungsdatum | 2023-01-09 |
| Entwickler | gorbitgames |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/gorbit99/wics-extension |
| Unterstützte Sprachen | 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"
]
} | |