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. 擴展基本資訊
| 名稱 | |
| ID | hpcamdcdkibakdjhoadmihiplbkgelln |
| 官方網址 | 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"
]
} | |