Quick Emojis for WhatsApp and Messenger

One-click reply using your favorite emojis

Cos'è Quick Emojis for WhatsApp and Messenger?

Quick Emojis for WhatsApp and Messenger è un'estensione di Chrome sviluppata da ivocass, e la sua funzione principale è "One-click reply using your favorite emojis".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Quick Emojis for WhatsApp and Messenger

Scarica i file di estensione Quick Emojis for WhatsApp and Messenger in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Have you ever wished you could send an emoji with just one click?
Now with Quick Emojis it's easier than ever!

Just click on one of your favorite emojis, and the message is sent.
You can customize the emoji bar with your favorites, so that they're always accessible.

Tip: to add multiple emojis, just hold Shift for the first one.


For WhatsApp and Messenger.
Available on Chrome and Firefox.

Source code available on Github (https://github.com/ivocass/quick-emojis).                    

Informazioni di Base sull'Estensione

Nome Quick Emojis for WhatsApp and Messenger Quick Emojis for WhatsApp and Messenger
ID jkllkmpngpfcnmmjpeckfknnmcbikcba
URL Ufficiale https://chrome.google.com/webstore/detail/jkllkmpngpfcnmmjpeckfknnmcbikcba
Descrizione One-click reply using your favorite emojis
Dimensione del File 45.98 KB
Conteggio Installazioni 20
Versione Corrente 0.0.0.6
Ultimo Aggiornamento 2021-07-10
Data di Pubblicazione 2020-07-15
Sviluppatore ivocass
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/ivocass/quick-emojis
URL della Pagina di Aiuto https://github.com/ivocass/quick-emojis/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick Emojis for WhatsApp and Messenger",
    "version": "0.0.0.6",
    "description": "One-click reply using your favorite emojis",
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "16": "assets\/quick-emojis-logo16.png",
            "32": "assets\/quick-emojis-logo32.png",
            "48": "assets\/quick-emojis-logo48.png",
            "128": "assets\/quick-emojis-logo128.png"
        },
        "default_popup": "src\/popup.html"
    },
    "icons": {
        "16": "assets\/quick-emojis-logo16.png",
        "32": "assets\/quick-emojis-logo32.png",
        "48": "assets\/quick-emojis-logo48.png",
        "128": "assets\/quick-emojis-logo128.png"
    },
    "web_accessible_resources": [
        "assets\/cog-icon.png",
        "assets\/quick-emojis-logo48.png",
        "assets\/quick-emojis-logo48-whatsapp.png",
        "assets\/quick-emojis-logo-name.png",
        "assets\/timesIcon.svg",
        "assets\/dark-mode-icon.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.whatsapp.com\/"
            ],
            "css": [
                "src\/css\/styles-whatsapp.css"
            ],
            "js": [
                "src\/js\/content-script-whatsapp.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.messenger.com\/*"
            ],
            "css": [
                "src\/css\/styles-messenger.css"
            ],
            "js": [
                "src\/js\/content-script-messenger.js"
            ]
        }
    ],
    "manifest_version": 2
}