WICS
An extension to add and manage custom items to WaniKani
Что такое WICS?
WICS - это расширение Chrome, разработанное gorbitgames, и его основная функция - "An extension to add and manage custom items to WaniKani".
Снимки экрана расширения
Скачать файл CRX расширения WICS
Скачайте файлы расширений WICS в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
WICS makes it possible to harness the power of the WaniKani srs system for your own items. Основная информация о расширении
| Название | |
| 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"
]
} | |