Auto Furigana

Auto insert romaji to Japanese.

Auto Furigana là gì?

Auto Furigana là một tiện ích mở rộng Chrome được phát triển bởi x6udpngx, và tính năng chính của nó là "Auto insert romaji to Japanese.".

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

screenshot

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

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

                        This extension inserts romaji rubi characters above Japanese and provides a translation under mouseover words.
Note that program cannot guarantee completely correct word segmentation and kanji pronunciation.                    

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

Tên Auto Furigana Auto Furigana
ID aopnnccplbmphndiljkpkcnnihfdfnpm
URL Chính Thức https://chromewebstore.google.com/detail/auto-furigana/aopnnccplbmphndiljkpkcnnihfdfnpm
Mô tả Auto insert romaji to Japanese.
Kích Thước Tệp 14.93 MB
Số Lần Cài Đặt 967
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-12-11
Ngày Phát Hành 2021-12-11
Đánh Giá 4.25/5 Tổng số 8 Đánh Giá
Nhà Phát Triển x6udpngx
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": "Auto Furigana",
    "description": "Auto insert romaji to Japanese.",
    "version": "1.0",
    "manifest_version": 3,
    "author": "x6udpngx",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "content-style.css"
            ],
            "js": [
                "japanese.js\/japanese.js",
                "kuromoji\/kuromoji.js",
                "content-script.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "sandbox": {
        "pages": [
            "popup-sandbox.html"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/kuromoji\/dict\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/clients5.google.com\/"
    ],
    "permissions": [
        "tabs",
        "storage"
    ]
}