Kaomoji-Typer

Type Kaomoji natively with key bindings and Kaomoji search

Kaomoji-Typerคืออะไร?

Kaomoji-Typer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Xuezheng Ma และคุณลักษณะหลักของมันคือ "Type Kaomoji natively with key bindings and Kaomoji search"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Kaomoji-Typer

ดาวน์โหลดไฟล์ส่วนขยาย Kaomoji-Typer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Type kaomojis on English keyboards natively with kaomoji search and key bindings!

Default Key Binding:
1 - 9 . : Shortcut to have a kaomoji replace current world
-  : Scroll to previous tab when there are more than 9 suggestions
=  : Scroll to next tab when there are more than 9 suggestions
Shift + Space  : Toggle the application

 e.g. "be" => matches "bears" =>  suggests: 

1. ʕ •ᴥ•ʔ
2. ᶘಠᴥಠᶅ
3. ʕノ•ᴥ•ʔノ ︵ ┻━┻
4. ┳┳ヾ(T(エ)Tヽ)
.......

Type 1 and "be" will be replaced with "ʕ •ᴥ•ʔ" in text area. 


Patch notes:

v1.0.2 beta:
added basic support for content editable elements
included http websites
fixed code linting

v1.0.1 beta:
added 300+ new kaomojis

v1.0.0 beta:
added more key binding: =, -, and shift + space
switched to a new dark color scheme
rewrote core: better performance, reduced application size, better UX
added more kaomojis

=========================

v0.138.5:
fixed a bug where typing a kaomoji changes spaces to commas

v0.138.4:
close suggestion when typing passwords

v0.138.3:
improved indexing algorithm,
added more kaomojis

v0.138.2:
fixed a bug where you can't really turn the suggestions off,
added a tip to show users they can select a kaomoji by typing 1-9

v0.138.1:
only show popup when start typing, and small UI fixes

v0.138:
First release, the logic that matches kaomojis is here, need to polish UI, need to add more kaomojis into collection.

If you want to report a bug or request a new feature:
https://chrome.google.com/webstore/detail/kaomoji-typer/icfgegegnffllbfofpkflfalbimedned/support?hl=en

If you want to contribute:
https://github.com/xuezhma/kaomoji-typer                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Kaomoji-Typer Kaomoji-Typer
ID icfgegegnffllbfofpkflfalbimedned
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/kaomoji-typer/icfgegegnffllbfofpkflfalbimedned
คำอธิบาย Type Kaomoji natively with key bindings and Kaomoji search
ขนาดไฟล์ 177 KB
จำนวนการติดตั้ง 27
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2017-06-23
วันที่เผยแพร่ 2017-06-23
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Xuezheng Ma
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/xuezhma/kaomoji-typer
URL หน้าช่วยเหลือ https://github.com/xuezhma/kaomoji-typer
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Kaomoji-Typer",
    "description": "Type Kaomoji natively with key bindings and Kaomoji search",
    "version": "1.0.2",
    "icons": {
        "16": "images\/icon.png",
        "48": "images\/icon.png",
        "128": "images\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/array-prototype.js",
                "js\/kaomoji-collection.js",
                "js\/suggestion-algorithm.js",
                "js\/dom-manipulation.js",
                "js\/index.js"
            ],
            "css": [
                "css\/index.css"
            ]
        }
    ],
    "author": "Xuezheng Ma",
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_title": "Kaomoji Typer"
    },
    "permissions": [
        "https:\/\/*\/*"
    ]
}