SKK Japanese Input
SKK implementation for ChromeOS Input Method API
SKK Japanese Inputคืออะไร?
SKK Japanese Input เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Hiroshi Kurokawa และคุณลักษณะหลักของมันคือ "SKK implementation for ChromeOS Input Method API"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SKK Japanese Input
ดาวน์โหลดไฟล์ส่วนขยาย SKK Japanese Input ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
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" ] } |