Kanify

Base Level Extension

Kanify là gì?

Kanify là một tiện ích mở rộng Chrome được phát triển bởi kanifyext, và tính năng chính của nó là "Base Level Extension".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Kanify 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

                        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                    

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

Tên Kanify Kanify
ID gibmifddoamhnlgbaofkpjaicpkkkdbd
URL Chính Thức https://chromewebstore.google.com/detail/kanify/gibmifddoamhnlgbaofkpjaicpkkkdbd
Mô tả Base Level Extension
Kích Thước Tệp 142 KB
Số Lần Cài Đặt 100
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2020-09-08
Ngày Phát Hành 2020-08-24
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển kanifyext
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://www.wanikani.com/
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}