Emoji For Hangouts
A simple extension to type emoji in Google Hangouts with emoji codes.
什麼是Emoji For Hangouts?
Emoji For Hangouts是由http://kmh.zone開發的Chrome擴展程式,該擴展的主要功能是“A simple extension to type emoji in Google Hangouts with emoji codes.”。
擴展截圖
下載Emoji For Hangouts擴展crx文件
下載Emoji For Hangouts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Note: You must refresh all Gmail/Hangouts pages after installation for this extension to work.
Emoji For Hangouts allows you to type emoji in Google Hangouts with ease. You no longer have to scroll through a long list of emoji. Instead you can just use Discord-like shortcuts. For example,
:thinking: -> 🤔
:hamburger: -> 🍔
:cowboy: -> 🤠
This extension has no graphical interface - instead it just works in any Hangouts chat. If you type a partial emoji name, you can use the tab key to cycle through possibilities, sorted by frequency of use.
Source code is available on GitHub: https://github.com/kmh11/Emoji-For-Hangouts 擴展基本資訊
| 名稱 | |
| ID | hnkjiiakgcinggbgmpdhggopmnmfhiea |
| 官方網址 | https://chrome.google.com/webstore/detail/emoji-for-hangouts/hnkjiiakgcinggbgmpdhggopmnmfhiea |
| 簡介 | A simple extension to type emoji in Google Hangouts with emoji codes. |
| 檔案大小 | 56.49 KB |
| 安裝次數 | 9,000 |
| 目前版本 | 0.0.1 |
| 更新時間 | 2018-02-03 |
| 上架時間 | 2018-02-03 |
| 評分 | 2.89/5 共 28 次評分 |
| 開發者 | http://kmh.zone |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Emoji For Hangouts",
"description": "A simple extension to type emoji in Google Hangouts with emoji codes.",
"version": "0.0.1",
"content_scripts": [
{
"matches": [
"*:\/\/hangouts.google.com\/*"
],
"js": [
"jquery.min.js",
"emoji_codes.js",
"emojityper.js"
],
"all_frames": true
}
],
"permissions": [
"activeTab",
"storage"
],
"browser_action": {
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
} | |