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".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة WICS

قم بتنزيل ملفات الامتداد WICS بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم WICS 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"
    ]
}