smash.gg Japanese Tag Romanizer

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

Co je smash.gg Japanese Tag Romanizer?

smash.gg Japanese Tag Romanizer je rozšíření Chrome vyvinuté kenniky.dev, a jeho hlavní funkcí je „Translate Japanese tags on smash.gg with a simple mouseover!“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření smash.gg Japanese Tag Romanizer

Stáhněte si soubory rozšíření smash.gg Japanese Tag Romanizer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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/                    

Základní Informace o Rozšíření

Název smash.gg Japanese Tag Romanizer smash.gg Japanese Tag Romanizer
ID iimfemaphmjjeogdhpolmjihigodnpjd
Oficiální URL https://chromewebstore.google.com/detail/smashgg-japanese-tag-roma/iimfemaphmjjeogdhpolmjihigodnpjd
Popis Translate Japanese tags on smash.gg with a simple mouseover!
Velikost souboru 18.42 KB
Počet instalací 756
Aktuální Verze 0.5.4
Poslední Aktualizace 2023-03-19
Datum Vydání 2022-01-02
Hodnocení 4.43/5 Celkem 7 Hodnocení
Vývojář kenniky.dev
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://docs.google.com/document/d/1bagZh_8-NJJJnqz0saHVmOADqaOAr0bc5_2tAJLNNVo/edit?usp=sharing
Podporované Jazyky 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"
    }
}