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 |
| 官方網址 | 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"
}
} | |