Auto Furigana

Auto insert romaji to Japanese.

Auto Furiganaคืออะไร?

Auto Furigana เป็นส่วนขยายของ Chrome ที่พัฒนาโดย x6udpngx และคุณลักษณะหลักของมันคือ "Auto insert romaji to Japanese."

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

screenshot

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

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

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

                        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.                    

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

ชื่อ Auto Furigana Auto Furigana
ID aopnnccplbmphndiljkpkcnnihfdfnpm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/auto-furigana/aopnnccplbmphndiljkpkcnnihfdfnpm
คำอธิบาย Auto insert romaji to Japanese.
ขนาดไฟล์ 14.93 MB
จำนวนการติดตั้ง 967
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2021-12-11
วันที่เผยแพร่ 2021-12-11
คะแนน 4.25/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา x6udpngx
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
    ]
}