Kanify

Base Level Extension

Kanifyคืออะไร?

Kanify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kanifyext และคุณลักษณะหลักของมันคือ "Base Level Extension"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Kanify

ดาวน์โหลดไฟล์ส่วนขยาย Kanify ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Highlight all the kanjis you know from WaniKani on any given website! Easily figure out how readable a web page is based on your current WaniKani level.

Simply input your API token in from the WaniKani website and the extension is ready to go!

Version history:
- 1.0 : Initial release
- 1.1: Added icon to chrome store
- 1.2: Fixed bug which broke the extension for high level users
-1.3: Changed hotkey to fix bugs                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Kanify Kanify
ID gibmifddoamhnlgbaofkpjaicpkkkdbd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/kanify/gibmifddoamhnlgbaofkpjaicpkkkdbd
คำอธิบาย Base Level Extension
ขนาดไฟล์ 142 KB
จำนวนการติดตั้ง 100
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2020-09-08
วันที่เผยแพร่ 2020-08-24
คะแนน 5.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา kanifyext
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://www.wanikani.com/
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kanify",
    "description": "Base Level Extension",
    "version": "1.3",
    "manifest_version": 2,
    "icons": {
        "128": "kanify_icon.png"
    },
    "background": {
        "page": "background_files\/background.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_scripts\/highlight_content.js",
                "content_scripts\/contents.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "Kanify_Official_K.png",
        "default_title": "Kanify",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "commands": {
        "kanify_me": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "Command+Shift+X"
            },
            "description": "Executes the highlight event"
        }
    }
}