smash.gg Japanese Tag Romanizer
Translate Japanese tags on smash.gg with a simple mouseover!
O que é smash.gg Japanese Tag Romanizer?
smash.gg Japanese Tag Romanizer é uma extensão do Chrome desenvolvida por kenniky.dev, e sua principal característica é "Translate Japanese tags on smash.gg with a simple mouseover!".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão smash.gg Japanese Tag Romanizer
Baixe arquivos de extensão smash.gg Japanese Tag Romanizer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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/
Informações Básicas da Extensão
Nome | smash.gg Japanese Tag Romanizer |
ID | iimfemaphmjjeogdhpolmjihigodnpjd |
URL Oficial | https://chromewebstore.google.com/detail/smashgg-japanese-tag-roma/iimfemaphmjjeogdhpolmjihigodnpjd |
Descrição | Translate Japanese tags on smash.gg with a simple mouseover! |
Tamanho do Arquivo | 18.42 KB |
Contagem de Instalações | 756 |
Versão Atual | 0.5.4 |
Última Atualização | 2023-03-19 |
Data de Publicação | 2022-01-02 |
Classificação | 4.43/5 Total de 7 Avaliações |
Desenvolvedor | kenniky.dev |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://docs.google.com/document/d/1bagZh_8-NJJJnqz0saHVmOADqaOAr0bc5_2tAJLNNVo/edit?usp=sharing |
Idiomas Suportados | 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" } } |