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/ 扩展基本信息
| 名称 | |
| 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 |
| 电子邮箱 | [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"
}
} | |