smash.gg Japanese Tag Romanizer
Translate Japanese tags on smash.gg with a simple mouseover!
smash.gg Japanese Tag Romanizer là gì?
smash.gg Japanese Tag Romanizer là một tiện ích mở rộng Chrome được phát triển bởi kenniky.dev, và tính năng chính của nó là "Translate Japanese tags on smash.gg with a simple mouseover!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng smash.gg Japanese Tag Romanizer
Tải xuống các tệp mở rộng smash.gg Japanese Tag Romanizer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | smash.gg Japanese Tag Romanizer |
ID | iimfemaphmjjeogdhpolmjihigodnpjd |
URL Chính Thức | https://chromewebstore.google.com/detail/smashgg-japanese-tag-roma/iimfemaphmjjeogdhpolmjihigodnpjd |
Mô tả | Translate Japanese tags on smash.gg with a simple mouseover! |
Kích Thước Tệp | 18.42 KB |
Số Lần Cài Đặt | 756 |
Phiên Bản Hiện Tại | 0.5.4 |
Cập Nhật Lần Cuối | 2023-03-19 |
Ngày Phát Hành | 2022-01-02 |
Đánh Giá | 4.43/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | kenniky.dev |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://docs.google.com/document/d/1bagZh_8-NJJJnqz0saHVmOADqaOAr0bc5_2tAJLNNVo/edit?usp=sharing |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |