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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Translate Japanese tags on smash.gg with a simple mouseover!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में smash.gg Japanese Tag Romanizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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" } } |