Buffer Emoji Picker

Emoji picker for buffer.com

Apa itu Buffer Emoji Picker?

Buffer Emoji Picker adalah ekstensi Chrome yang dikembangkan oleh Bruno Scopelliti, dan fitur utamanya adalah "Emoji picker for buffer.com".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Buffer Emoji Picker

Unduh file ekstensi Buffer Emoji Picker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Buffer Emoji Picker Buffer Emoji Picker
ID dkcdfffelmfjpfdhcdlaogiedgamgoea
URL Resmi https://chromewebstore.google.com/detail/buffer-emoji-picker/dkcdfffelmfjpfdhcdlaogiedgamgoea
Deskripsi Emoji picker for buffer.com
Ukuran File 18.01 KB
Jumlah Instalasi 93
Versi Saat Ini 1.0.2
Terakhir Diperbarui 2017-04-27
Tanggal Publikasi 2017-04-26
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Bruno Scopelliti
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}