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!」です。
拡張機能のスクリーンショット
smash.gg Japanese Tag Romanizer拡張機能のCRXファイルをダウンロード
smash.gg Japanese Tag Romanizer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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" } } |