SKK Japanese Input

SKK implementation for ChromeOS Input Method API

SKK Japanese Input क्या है?

SKK Japanese Input Hiroshi Kurokawa द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "SKK implementation for ChromeOS Input Method API"।

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

screenshot
screenshot

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

crx प्रारूप में SKK Japanese Input एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        SKK Japanese IME that works on ChromeOS.  The extension provides a custom IME (Input Method Editor) that allows users to input Japanese text using SKK on ChromeOS.

SKK stands for Simple Kana to Kanji conversion program (https://ja.wikipedia.org/wiki/SKK) and there are many  implementations on various platforms such as DDSKK on Emacs, AquaSKK on macOS or fcitx-skk on Linux.  The extension adds another variation of SKK to ChromeOS.

After installing the extension, follow the steps below to enable the input method.
1. Go to Settings → Show advanced settings → Languages
2. Click on “Language and inputs” button
3. Click on "Add input methods"
4. Select "SKK(for [your keyboard layout])"
5. Click on "Add"
6. Click on "SKK" to switch the input method to SKK you added

To load a dictionary file in skk-jisyo format, you can go to Options menu and input the URL of the dictionary file and click on "reload".  The dictionaries are distributed on some public website.

This ChromeOS SKK provides the basic SKK functionality. For the basic usage of SKK, please refer the documentation of other SKKs.

Please check out our support page for the latest information:
https://github.com/hkurokawa/chrome-skk                    

एक्सटेंशन की मूल जानकारी

नाम SKK Japanese Input SKK Japanese Input
ID gdfnmlnbnmgdliccidmiphhpicaecffj
आधिकारिक URL https://chromewebstore.google.com/detail/skk-japanese-input/gdfnmlnbnmgdliccidmiphhpicaecffj
विवरण SKK implementation for ChromeOS Input Method API
फ़ाइल का आकार 24.66 KB
स्थापना संख्या 188
वर्तमान संस्करण 1.3.0
अंतिम अपडेट 2023-07-23
प्रकाशन तिथि 2023-03-10
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Hiroshi Kurokawa
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/hkurokawa/chrome-skk
सहायता पृष्ठ URL https://github.com/hkurokawa/chrome-skk/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SKK Japanese Input",
    "version": "1.3.0",
    "manifest_version": 3,
    "description": "SKK implementation for ChromeOS Input Method API",
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "input_components": [
        {
            "name": "SKK(for US keyboard)",
            "type": "ime",
            "id": "net.hydrakecat.skk.us",
            "description": "An SKK clone",
            "language": "ja",
            "layouts": [
                "us"
            ]
        },
        {
            "name": "SKK(for Japanese keyboard)",
            "type": "ime",
            "id": "net.hydrakecat.skk.jp",
            "description": "An SKK clone",
            "language": "ja",
            "layouts": [
                "jp"
            ]
        },
        {
            "name": "SKK(for Dvorak keyboard)",
            "type": "ime",
            "id": "net.hydrakecat.skk.dvorak",
            "description": "An SKK clone",
            "language": "ja",
            "layouts": [
                "us-dvorak"
            ]
        }
    ],
    "permissions": [
        "input",
        "storage",
        "unlimitedStorage"
    ]
}