smash.gg Japanese Tag Romanizer

Translate Japanese tags on smash.gg with a simple mouseover!

smash.gg Japanese Tag Romanizer란 무엇입니까?

smash.gg Japanese Tag Romanizer은(는) kenniky.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Translate Japanese tags on smash.gg with a simple mouseover!"입니다.

확장 프로그램 스크린샷

screenshot

smash.gg Japanese Tag Romanizer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This tool automatically provides a romanization of Japanese tags (currently hiragana and katakana supported) on the esports site start.gg (formerly smash.gg). Mousing over a tag containing hiragana or katakana will automatically trigger a mouseover with its romanization.

Also supports select irregular romanizations! List of all supported irregular romanizations can be found here: https://github.com/kenniky/smashgg-japanese-romanizer/blob/main/irregular.tsv

Firefox extension and changelog can be found here: https://addons.mozilla.org/en-US/firefox/addon/smash-gg-jp-tag-romanizer/                    

확장 프로그램 기본 정보

이름 smash.gg Japanese Tag Romanizer smash.gg Japanese Tag Romanizer
ID iimfemaphmjjeogdhpolmjihigodnpjd
공식 URL https://chromewebstore.google.com/detail/smashgg-japanese-tag-roma/iimfemaphmjjeogdhpolmjihigodnpjd
설명 Translate Japanese tags on smash.gg with a simple mouseover!
파일 크기 18.42 KB
설치 횟수 756
현재 버전 0.5.4
최근 업데이트 2023-03-19
출시 날짜 2022-01-02
평점 4.43/5 총 7 개의 평점
개발자 kenniky.dev
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://docs.google.com/document/d/1bagZh_8-NJJJnqz0saHVmOADqaOAr0bc5_2tAJLNNVo/edit?usp=sharing
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "smash.gg Japanese Tag Romanizer",
    "description": "Translate Japanese tags on smash.gg with a simple mouseover!",
    "version": "0.5.4",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.smash.gg\/*",
                "https:\/\/*.start.gg\/*"
            ],
            "css": [
                "tooltip.css"
            ],
            "js": [
                "translator.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.challonge.com\/*"
            ],
            "js": [
                "translator-challonge.js"
            ]
        }
    ],
    "action": {
        "default_title": "Click to refresh irregular romanizations"
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    }
}