Auto Furigana

Auto insert romaji to Japanese.

什麼是Auto Furigana?

Auto Furigana是由x6udpngx開發的Chrome擴展程式,該擴展的主要功能是“Auto insert romaji to Japanese.”。

擴展截圖

screenshot

下載Auto Furigana擴展crx文件

下載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
官方網址 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"
    ]
}