Quick Emojis for WhatsApp and Messenger

One-click reply using your favorite emojis

Qu'est-ce que Quick Emojis for WhatsApp and Messenger ?

Quick Emojis for WhatsApp and Messenger est une extension Chrome développée par ivocass, et sa fonction principale est "One-click reply using your favorite emojis".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Quick Emojis for WhatsApp and Messenger

Téléchargez les fichiers d'extension Quick Emojis for WhatsApp and Messenger au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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).                    

Informations de Base sur l'Extension

Nom Quick Emojis for WhatsApp and Messenger Quick Emojis for WhatsApp and Messenger
ID jkllkmpngpfcnmmjpeckfknnmcbikcba
URL Officiel https://chrome.google.com/webstore/detail/jkllkmpngpfcnmmjpeckfknnmcbikcba
Description One-click reply using your favorite emojis
Taille du Fichier 45.98 KB
Nombre d'Installations 20
Version Actuelle 0.0.0.6
Dernière Mise à Jour 2021-07-10
Date de Publication 2020-07-15
Développeur ivocass
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/ivocass/quick-emojis
URL de la Page d'Aide https://github.com/ivocass/quick-emojis/issues
Langues Prises en Charge 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
}