Gibberish to Hangul Translator
Translates the seemingly random letters often used as Korean usernames into the Hangul they represent.
Gibberish to Hangul Translatorとは何ですか?
Gibberish to Hangul TranslatorはAJ Magraciaによって開発されたChromeの拡張機能で、その主な機能は「Translates the seemingly random letters often used as Korean usernames into the Hangul they represent.」です。
拡張機能のスクリーンショット
Gibberish to Hangul Translator拡張機能のCRXファイルをダウンロード
Gibberish to Hangul Translator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Gibberish to Hangul Translator is meant to translate the gibberish characters that appear when one types a Korean name/word on a standard QWERTY keyboard, often used as usernames in lieu of something actually readable in English, into the Hangul they represent. For example, K-Pop Star IU uses the name "dlwlrma" on Instagram, which, from QWERTY, directly transposes to 이지금 on a Korean layout. One could very easily swap keyboard layouts and type the letters themselves to determine the word, but I'm lazy. But not too lazy to write the code to do it for me, I guess. Usage Highlight and right click the desired text and open the parent menu item labeled "Translate gibberish to Hangul". The translated text will appear as a sub-menu item.
拡張機能の基本情報
名前 | Gibberish to Hangul Translator |
ID | jhlbpmodkmocmihhlnkmghepncfgiefg |
公式URL | https://chromewebstore.google.com/detail/gibberish-to-hangul-trans/jhlbpmodkmocmihhlnkmghepncfgiefg |
説明 | Translates the seemingly random letters often used as Korean usernames into the Hangul they represent. |
ファイルサイズ | 11.07 KB |
インストール数 | 23 |
現在のバージョン | 0.0.1 |
最終更新日 | 2021-06-10 |
公開日 | 2021-06-09 |
開発者 | AJ Magracia |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/ajmagracia/Gibberish-to-Hangul-Translator |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Gibberish to Hangul Translator", "description": "Translates the seemingly random letters often used as Korean usernames into the Hangul they represent.", "version": "0.0.1", "author": "AJ Magracia", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": true, "run_at": "document_start", "js": [ "content.js" ] } ], "permissions": [ "contextMenus", "scripting", "tabs" ], "icons": { "48": "gth_small.png", "128": "gth.png" } } |