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.”。

扩展截图

screenshot

下载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 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"
    }
}