Gibberish to Hangul Translator

Translates the seemingly random letters often used as Korean usernames into the Hangul they represent.

Gibberish to Hangul Translator là gì?

Gibberish to Hangul Translator là một tiện ích mở rộng Chrome được phát triển bởi AJ Magracia, và tính năng chính của nó là "Translates the seemingly random letters often used as Korean usernames into the Hangul they represent.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Gibberish to Hangul Translator

Tải xuống các tệp mở rộng Gibberish to Hangul Translator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Gibberish to Hangul Translator Gibberish to Hangul Translator
ID jhlbpmodkmocmihhlnkmghepncfgiefg
URL Chính Thức https://chromewebstore.google.com/detail/gibberish-to-hangul-trans/jhlbpmodkmocmihhlnkmghepncfgiefg
Mô tả Translates the seemingly random letters often used as Korean usernames into the Hangul they represent.
Kích Thước Tệp 11.07 KB
Số Lần Cài Đặt 23
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2021-06-10
Ngày Phát Hành 2021-06-09
Nhà Phát Triển AJ Magracia
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ajmagracia/Gibberish-to-Hangul-Translator
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}