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ファイルをダウンロード
Buffer Emoji Picker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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" ] } |