smash.gg Japanese Tag Romanizer

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

Qu'est-ce que smash.gg Japanese Tag Romanizer ?

smash.gg Japanese Tag Romanizer est une extension Chrome développée par kenniky.dev, et sa fonction principale est "Translate Japanese tags on smash.gg with a simple mouseover!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension smash.gg Japanese Tag Romanizer

Téléchargez les fichiers d'extension smash.gg Japanese Tag Romanizer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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/                    

Informations de Base sur l'Extension

Nom smash.gg Japanese Tag Romanizer smash.gg Japanese Tag Romanizer
ID iimfemaphmjjeogdhpolmjihigodnpjd
URL Officiel https://chromewebstore.google.com/detail/smashgg-japanese-tag-roma/iimfemaphmjjeogdhpolmjihigodnpjd
Description Translate Japanese tags on smash.gg with a simple mouseover!
Taille du Fichier 18.42 KB
Nombre d'Installations 756
Version Actuelle 0.5.4
Dernière Mise à Jour 2023-03-19
Date de Publication 2022-01-02
Évaluation 4.43/5 Total 7 Évaluations
Développeur kenniky.dev
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://docs.google.com/document/d/1bagZh_8-NJJJnqz0saHVmOADqaOAr0bc5_2tAJLNNVo/edit?usp=sharing
Langues Prises en Charge 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"
    }
}