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