4 items
SKK-JISYO.Lベースのローカル漢字変換API 兼 リアルタイム入力パッド Title: Simple Kanji Conversion Server ※English description is provided in the second half of this page. 【概要】 完全ローカル・オフラインで動作する、SKK辞書ベースの超軽量な漢字変換APIサーバーです。 他の拡張機能やローカルWebアプリから呼び出して使用するためのバックエンドとして機能し、Google CGI API(Transliterate API)および Yahoo! かな漢字変換API と互換性のあるレスポンスを返します。通信ラグのない爆速の変換処理を提供します。 🔰 別のアプリから案内されてインストールする方へ 「〇〇というアプリを使うには、この拡張機能が必要です」と案内されてこのページに来た方は、【Chromeに追加するだけで完了】です! 追加後の特別な設定や操作は一切必要ありません。そのまま元のアプリにお戻りください。(本拡張機能は、元のアプリが漢字変換を行うための「裏側の辞書」として静かに機能します) ---以下、開発者および新技術に興味がある方向けの詳細です--- 【v1.0.1 の主な特徴】 ・完全ローカル動作: 外部サーバーとの通信を一切行わないため、セキュリティが厳しい環境やオフラインでも安全に動作します。 ・2大レガシーAPI互換 (New!): 従来のGoogle互換モードに加え、新たに「Yahoo! API (JSON-RPC 2.0) 互換モード」を搭載。既存アプリの通信部分を chrome.runtime.sendMessage に書き換えるだけで簡単に移行できます。 ・インタラクティブなAPIテストUI (New!): ブラウザのサイドパネル(日本語/英語対応)で文字を入力すると、変換結果だけでなく「レスポンス生データ(JSON)」と「コピペで使えるリクエストコード」がリアルタイム生成され、APIの仕様が直感的に理解できます。 🚀 実際の活用例(こんなアプリの開発に最適です) ・API依存アプリのオフライン化: 過去にGoogleやYahooのAPIを使って作られた拡張機能やWebアプリの通信先を本サーバーに向けるだけで、完全オフライン対応アプリとして蘇らせることができます。 ・AIを使ったオリジナルアプリ開発: ChatGPT等のAIに「このAPIを使ってメモ帳を作って」と指示し、サイドパネルで生成されたコードを渡すだけで、面倒な辞書処理を拡張機能に丸投げした自分だけの入力ツールが簡単に作れます。 ・セキュアな環境向けのエディタ: 外部通信が制限されている社内システムや、プライバシーを極限まで高めたいローカルMarkdownエディタなどの日本語入力バックエンドとして活躍します。 🛠️ 使い方(わずか数行で組み込み完了) 非常にシンプルです。あなたのアプリから、本拡張機能のIDを指定して chrome.runtime.sendMessage で「ローマ字」または「ひらがな」を送信するだけです。すぐにGoogle互換の多重配列データ、またはYahoo互換のJSONデータが返ってきます。 ⚠️ インストール前の重要なお知らせ(必ずお読みください) 本拡張機能は、主に開発者向けの特殊なツールです。以下の点にご注意ください。 ・Chrome内でしか動作しません。 ・単一で使用する一般的な入力ソフトではありません。(主に他のアプリから裏側で呼び出されるAPIサーバーです。サイドパネルでの簡易入力は可能です) ・翻訳ツールや言語学習アプリではありません。(入力された読みを漢字に変換する機能のみを持ちます) ・OSや標準IMEを日本語化するものではありません。(WindowsのIMEやMacの標準入力を置き換えるものではありません) ・外部APIと完全に同じ変換候補が出るわけではありません。(レスポンスの「データ形式」が互換なだけであり、変換結果自体は内蔵のSKK辞書に依存します。文脈を読んだ高度なAI変換は行われません) ・長文の一括変換には向いていません。(シンプルな辞書ベースのアルゴリズムを採用しているため、単語や短い文節ごとの変換を前提としています) ・学習機能や単語登録機能はありません。(状態を持たないシンプルなAPIのため、変換候補の並び順は固定です) ・新語・流行語や特殊な人名・絵文字には非対応です。(SKK辞書の基本語彙に基づいています) 【プライバシーについて】 入力されたテキストや変換履歴を外部に送信・収集することは一切ありません。 ---------------------------------------------------------------------------------------------------- [Overview] A lightning-fast, fully local, and offline Kanji conversion API server based on the SKK dictionary. Designed to act as a backend for other Chrome extensions or local web applications, it returns responses that are fully compatible with both the Google CGI API (Transliterate API) and the Yahoo! API, providing instant conversion without network latency. 🔰 Did another app direct you here? If you were sent to this page by another app or extension with a message like "You need to install this extension first," all you need to do is [Add to Chrome]! No further setup, configuration, or action is required. You can close this page and return to your original app immediately. (This extension will silently work in the background as the invisible dictionary engine for your app.) --- Below are details for developers and tech enthusiasts --- [Key Features in v1.0.1] - Fully Local Operation: Zero external communication. Works safely and securely in strict environments or entirely offline. - Dual Legacy API Compatibility (New!): Now supports both Google CGI API and Yahoo! API (JSON-RPC 2.0) modes. Seamlessly migrate your existing apps by simply replacing your network requests with chrome.runtime.sendMessage. - Interactive API Viewer (New!): The bilingual (EN/JA) side-panel "Input Pad" now dynamically generates "Raw JSON Responses" and "JavaScript Request Code" in real-time as you type, making API integration an absolute breeze. 🚀 Practical Use Cases - Reviving API-dependent Apps: Easily convert your existing extensions or web apps that rely on deprecated Google or Yahoo APIs into fully offline applications simply by changing the communication target to this extension. - AI-Assisted App Development: Pass the generated JS code to an AI (like ChatGPT) and ask it to build a custom UI. The extension handles all the complex dictionary processing for you! - Editors for Secure Environments: Serves as the perfect Japanese input backend for internal corporate systems with restricted external networks or local Markdown editors that demand maximum privacy. 🛠️ How to Integrate (Takes only a few lines of code) It is extremely simple. From your app, just use chrome.runtime.sendMessage with this extension's ID to send "Romaji" or "Hiragana". You will instantly receive a Google-compatible multi-dimensional array or a Yahoo-compatible JSON response. ⚠️ IMPORTANT NOTICES BEFORE INSTALLATION This extension is a specialized tool primarily for developers. Please note the following: - It works ONLY within the Google Chrome browser. - It is NOT a standalone, general-purpose typing software. (It is primarily an API server meant to be called by other apps, though simple typing via the side panel is available). - It is NOT a translation tool or a language learning app. (It only converts Japanese phonetic readings into Kanji characters). - It DOES NOT Japanese-ize your OS or system IME. (It will not replace your Windows IME or macOS default input system). - It DOES NOT yield the exact same conversion candidates as external web APIs. (Only the response data format is compatible. The actual conversion results rely strictly on the local SKK dictionary and lack advanced context-aware AI.) - It is NOT suitable for converting long sentences at once. (Since it relies on a simple dictionary-based algorithm, it is designed for word-by-word or short-phrase conversions). - No learning capability or user dictionary customization. (As a stateless API, the conversion candidate order remains fixed). - Does not cover modern slang, trending buzzwords, or emojis. (Strictly relies on the standard vocabulary provided by the SKK dictionary). [Privacy Policy] This extension does not transmit, store, or collect any of your input text or conversion history to any external servers.
Aug 25, 2026
rating_count is the Chrome Web Store ratings count, not a written-review count.
Media assets
Screenshots and videos on the listing.
Has promo video
Whether the listing includes at least one video.
Languages
Declared language locales.
Developer website
Listing exposes a developer website URL.
Contact email
Listing exposes a contact email.
Keyword in name
Case-insensitive substring match in the name.
Keyword in description
Case-insensitive substring match in the description.
Keyword occurrences in description
Count of case-insensitive occurrences in the description.
Category user-count percentile
Share of same-category extensions with fewer users (null if unknown).
These are transparent listing completeness / keyword signals, not a prediction of Chrome Web Store search ranking.