Furigana Maker

Add furigana to Japanese text on any page for learning kanji pronunciation.

Furigana Maker là gì?

Furigana Maker là một tiện ích mở rộng Chrome được phát triển bởi https://aiktb.dev, và tính năng chính của nó là "Add furigana to Japanese text on any page for learning kanji pronunciation.".

Ả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 Furigana Maker

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

                        Features:
1. By default, furigana is automatically added to many common Japanese websites, such as Twitter, Asahi, Wikipedia etc.
2. The list of rules used by Auto Mode can be customized using CSS selectors and domains.
3. Users can use their mouse to select areas on any web page to add furigana to.
4. N5 kanji filter prepared for JLPT learners, these kanji will not be added furigana.
5. The font size and color of furigana can be freely modified, and toggle the display of furigana.
6. Optional support for hover mode, only showing furigana when mouseover kanji.

Note:
*Custom user rules require the use of CSS selectors.*
*Note that program cannot guarantee completely correct word segmentation and kanji pronunciation.*
This extension code is open source on [Github](https://github.com/aiktb/FuriganaMaker).                    

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

Tên Furigana Maker Furigana Maker
ID heodojceeinbkfjfilnfminlkgbacpfp
URL Chính Thức https://chromewebstore.google.com/detail/furigana-maker/heodojceeinbkfjfilnfminlkgbacpfp
Mô tả Add furigana to Japanese text on any page for learning kanji pronunciation.
Kích Thước Tệp 15.21 MB
Số Lần Cài Đặt 221
Phiên Bản Hiện Tại 1.3.0
Cập Nhật Lần Cuối 2024-02-15
Ngày Phát Hành 2023-11-06
Đánh Giá 3.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://aiktb.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/aiktb/FuriganaMaker
URL Trang Trợ Giúp https://github.com/aiktb/FuriganaMaker/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "icons": {
        "16": "icon16.plasmo.afe082d6.png",
        "32": "icon32.plasmo.fd808d76.png",
        "48": "icon48.plasmo.9be659db.png",
        "64": "icon64.plasmo.6561f8f6.png",
        "128": "icon128.plasmo.b6713b7b.png"
    },
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "16": "icon16.plasmo.afe082d6.png",
            "32": "icon32.plasmo.fd808d76.png",
            "48": "icon48.plasmo.9be659db.png",
            "64": "icon64.plasmo.6561f8f6.png",
            "128": "icon128.plasmo.b6713b7b.png"
        },
        "default_popup": "popup.html"
    },
    "version": "1.3.0",
    "author": "aiktb ",
    "name": "Furigana Maker",
    "description": "Add furigana to Japanese text on any page for learning kanji pronunciation.",
    "background": {
        "service_worker": "static\/background\/index.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "core.790498ea.js"
            ],
            "css": []
        },
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "customSelector.c9a39b24.js"
            ],
            "css": []
        },
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "furiganaMaker.ade415dd.js"
            ],
            "css": []
        },
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "eventHandler.4c7ab9ec.js"
            ],
            "css": []
        },
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "pageMarker.b609a3a5.js"
            ],
            "css": []
        }
    ],
    "commands": {
        "addFurigana": {
            "description": "Add furigana on the current page"
        },
        "toggleAutoMode": {
            "description": "Toggle auto mode on all pages"
        },
        "toggleKanjiFilter": {
            "description": "Toggle kanji filter on all pages"
        },
        "toggleFuriganaDisplay": {
            "description": "Toggle furigana display mode on all pages"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/dicts\/*.dat.gz"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ]
}