SKK Japanese Input

SKK implementation for ChromeOS Input Method API

SKK Japanese Input란 무엇입니까?

SKK Japanese Input은(는) Hiroshi Kurokawa에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "SKK implementation for ChromeOS Input Method API"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

SKK Japanese Input 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}