Buffer Emoji Picker
Emoji picker for buffer.com
O que é Buffer Emoji Picker?
Buffer Emoji Picker é uma extensão do Chrome desenvolvida por Bruno Scopelliti, e sua principal característica é "Emoji picker for buffer.com".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Buffer Emoji Picker
Baixe arquivos de extensão Buffer Emoji Picker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Buffer Emoji Picker |
ID | dkcdfffelmfjpfdhcdlaogiedgamgoea |
URL Oficial | https://chromewebstore.google.com/detail/buffer-emoji-picker/dkcdfffelmfjpfdhcdlaogiedgamgoea |
Descrição | Emoji picker for buffer.com |
Tamanho do Arquivo | 18.01 KB |
Contagem de Instalações | 93 |
Versão Atual | 1.0.2 |
Última Atualização | 2017-04-27 |
Data de Publicação | 2017-04-26 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Bruno Scopelliti |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |