Buffer Emoji Picker

Emoji picker for buffer.com

What is Buffer Emoji Picker?

Buffer Emoji Picker is a Chrome extension developed by Bruno Scopelliti, and its main feature is "Emoji picker for buffer.com".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Buffer Emoji Picker Extension CRX File

Download Buffer Emoji Picker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Buffer Emoji Picker Buffer Emoji Picker
ID dkcdfffelmfjpfdhcdlaogiedgamgoea
Official URL https://chromewebstore.google.com/detail/buffer-emoji-picker/dkcdfffelmfjpfdhcdlaogiedgamgoea
Description Emoji picker for buffer.com
File Size 18.01 KB
Installation Count 93
Current Version 1.0.2
Last Updated 2017-04-27
Publish Date 2017-04-26
Rating 5.00/5 Total 1 Ratings
Developer Bruno Scopelliti
Payment Type free
Supported Languages 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"
    ]
}