Easy Kana
Katakana in daily web-surfing. Smoothly meet with the Japanese alphabet, and it will become as familiar as a native.
Easy Kanaとは何ですか?
Easy Kanaはhttps://point-cloud.ruによって開発されたChromeの拡張機能で、その主な機能は「Katakana in daily web-surfing. Smoothly meet with the Japanese alphabet, and it will become as familiar as a native.」です。
拡張機能のスクリーンショット
Easy Kana拡張機能のCRXファイルをダウンロード
Easy Kana拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension replaces web-page characters to Katakana symbols. It's never been so easy to learn Katakana!
Features:
- Customizable character sets
- Hints over replaced characters
- Replace frequency and minimal distance tuning
- Per-domain and per-page filtering rules
- Autorun trigger
- Manual replace mode
- Restore button - replace cancellation
- Online mode - work with continuously updating page (e.g. Twitter)
- Skipping input fields and other editable elements
- Two source character sets support (Latin, Cyrillic)
- Activity icon animation
- Performance friendly 拡張機能の基本情報
| 名前 | |
| ID | nhcjgpmcngkhhfhbnopcjkhnkclhjfme |
| 公式URL | https://chromewebstore.google.com/detail/easy-kana/nhcjgpmcngkhhfhbnopcjkhnkclhjfme |
| 説明 | Katakana in daily web-surfing. Smoothly meet with the Japanese alphabet, and it will become as familiar as a native. |
| ファイルサイズ | 85.32 KB |
| インストール数 | 100 |
| 現在のバージョン | 0.1.20 |
| 最終更新日 | 2016-03-28 |
| 公開日 | 2016-03-28 |
| 評価 | 4.83/5 合計 6 レビュー |
| 開発者 | https://point-cloud.ru |
| 支払い方法 | free |
| 対応言語 | en,ru |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_app_name__",
"description": "__MSG_app_desc__",
"version": "0.1.20",
"browser_action": {
"default_icon": {
"19": "images\/icon19.png",
"38": "images\/icon38.png"
},
"default_popup": "popup.html",
"default_title": "__MSG_app_title__"
},
"background": {
"scripts": [
"kana_lib.js",
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"file:\/\/\/*",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"kana.css"
],
"js": [
"jquery.min.js",
"kana_lib.js",
"kana.js"
]
}
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/logo48.png",
"128": "images\/icon128.png"
},
"default_locale": "en",
"permissions": [
"activeTab",
"storage",
"contextMenus"
]
} | |