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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" } } |