Quick Emojis for WhatsApp and Messenger
One-click reply using your favorite emojis
Was ist Quick Emojis for WhatsApp and Messenger?
Quick Emojis for WhatsApp and Messenger ist eine Chrome-Erweiterung, die von ivocass entwickelt wurde, und ihr Hauptmerkmal ist "One-click reply using your favorite emojis".
Erweiterungsscreenshots
Quick Emojis for WhatsApp and Messenger-Erweiterungs-CRX-Datei herunterladen
Laden Sie Quick Emojis for WhatsApp and Messenger-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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).
Grundlegende Informationen zur Erweiterung
Name | |
ID | jkllkmpngpfcnmmjpeckfknnmcbikcba |
Offizielle URL | https://chrome.google.com/webstore/detail/jkllkmpngpfcnmmjpeckfknnmcbikcba |
Beschreibung | One-click reply using your favorite emojis |
Dateigröße | 45.98 KB |
Installationsanzahl | 20 |
Aktuelle Version | 0.0.0.6 |
Letztes Update | 2021-07-10 |
Veröffentlichungsdatum | 2020-07-15 |
Entwickler | ivocass |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/ivocass/quick-emojis |
Hilfeseite URL | https://github.com/ivocass/quick-emojis/issues |
Unterstützte Sprachen | 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 } |