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.
扩展基本信息
名称 | WICS |
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" ] } |