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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" } } |