Quick Emojis for WhatsApp and Messenger
One-click reply using your favorite emojis
What is Quick Emojis for WhatsApp and Messenger?
Quick Emojis for WhatsApp and Messenger is a Chrome extension developed by ivocass, and its main feature is "One-click reply using your favorite emojis".
Extension Screenshots
Download Quick Emojis for WhatsApp and Messenger Extension CRX File
Download Quick Emojis for WhatsApp and Messenger 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
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).
Extension Basic Information
Name | |
ID | jkllkmpngpfcnmmjpeckfknnmcbikcba |
Official URL | https://chrome.google.com/webstore/detail/jkllkmpngpfcnmmjpeckfknnmcbikcba |
Description | One-click reply using your favorite emojis |
File Size | 45.98 KB |
Installation Count | 20 |
Current Version | 0.0.0.6 |
Last Updated | 2021-07-10 |
Publish Date | 2020-07-15 |
Developer | ivocass |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/ivocass/quick-emojis |
Help Page URL | https://github.com/ivocass/quick-emojis/issues |
Supported Languages | 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 } |