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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Translates the seemingly random letters often used as Korean usernames into the Hangul they represent."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Gibberish to Hangul Translator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    }
}