WICS

An extension to add and manage custom items to WaniKani

WICS là gì?

WICS là một tiện ích mở rộng Chrome được phát triển bởi gorbitgames, và tính năng chính của nó là "An extension to add and manage custom items to WaniKani".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng WICS

Tải xuống các tệp mở rộng WICS dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        WICS makes it possible to harness the power of the WaniKani srs system for your own items.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên WICS WICS
ID hpcamdcdkibakdjhoadmihiplbkgelln
URL Chính Thức https://chromewebstore.google.com/detail/wics/hpcamdcdkibakdjhoadmihiplbkgelln
Mô tả An extension to add and manage custom items to WaniKani
Kích Thước Tệp 855 KB
Số Lần Cài Đặt 27
Phiên Bản Hiện Tại 0.1.9
Cập Nhật Lần Cuối 2023-01-18
Ngày Phát Hành 2023-01-09
Nhà Phát Triển gorbitgames
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/gorbit99/wics-extension
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}