Buffer Emoji Picker
Emoji picker for buffer.com
Buffer Emoji Picker란 무엇입니까?
Buffer Emoji Picker은(는) Bruno Scopelliti에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Emoji picker for buffer.com"입니다.
확장 프로그램 스크린샷
Buffer Emoji Picker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Buffer Emoji Picker adds to https://buffer.com an emoji picker that lets you easily pick an emoji for your message. Features: * 200+ emojis * Recently used emojis section, to quickly access your latest used emoji. * Search box permits to filter emoji list. * Fully accessible via keyboards.
확장 프로그램 기본 정보
이름 | Buffer Emoji Picker |
ID | dkcdfffelmfjpfdhcdlaogiedgamgoea |
공식 URL | https://chromewebstore.google.com/detail/buffer-emoji-picker/dkcdfffelmfjpfdhcdlaogiedgamgoea |
설명 | Emoji picker for buffer.com |
파일 크기 | 18.01 KB |
설치 횟수 | 93 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2017-04-27 |
출시 날짜 | 2017-04-26 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Bruno Scopelliti |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Buffer Emoji Picker", "short_name": "Buffer Emoji", "description": "Emoji picker for buffer.com", "version": "1.0.2", "author": "Bruno Scopelliti", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/buffer.com\/app\/profile\/*", "https:\/\/buffer.com\/app\/profile\/*\/buffer\/queue\/list" ], "js": [ "emoji-picker.js" ], "css": [ "app.css" ] } ], "web_accessible_resources": [ "\/templates\/*.html" ], "permissions": [ "activeTab", "https:\/\/buffer.com\/", "tabs", "webNavigation" ] } |