FuriKani

Removes furigana on websites based on your WaniKani level

FuriKani là gì?

FuriKani là một tiện ích mở rộng Chrome được phát triển bởi Lauchmelder, và tính năng chính của nó là "Removes furigana on websites based on your WaniKani level".

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

screenshot
screenshot

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

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

                        The simplest way to improve your Japanese reading experience if you are a WaniKani user. Supply the extension with a WaniKani API Token to automatically remove furigana on websites for any words you (should) know.

Vocabulary is automatically synchronized with WaniKani whenever you level up. So if you keep doing your reviews and level up you should slowly see more and more of the furigana disappear from the web. This way you will be forced to read words you know from memory, while still allowing you to see the pronounciation of unknown vocabulary.                    

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

Tên FuriKani FuriKani
ID lbjenjfljjnlkbdfbgmgcnkfnddaeccl
URL Chính Thức https://chromewebstore.google.com/detail/furikani/lbjenjfljjnlkbdfbgmgcnkfnddaeccl
Mô tả Removes furigana on websites based on your WaniKani level
Kích Thước Tệp 53.34 KB
Số Lần Cài Đặt 70
Phiên Bản Hiện Tại 0.7
Cập Nhật Lần Cuối 2022-04-02
Ngày Phát Hành 2022-03-21
Nhà Phát Triển Lauchmelder
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FuriKani",
    "description": "Removes furigana on websites based on your WaniKani level",
    "version": "0.7",
    "icons": {
        "16": "res\/icon16.png",
        "48": "res\/icon48.png",
        "128": "res\/icon128.png"
    },
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "src\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "permissions": [
        "storage"
    ]
}