WhatsApp Web Shortcuts
Add keyboard shortcuts for WhatsApp Web!
What is WhatsApp Web Shortcuts?
WhatsApp Web Shortcuts is a Chrome extension developed by Edmar Junior, and its main feature is "Add keyboard shortcuts for WhatsApp Web!".
Extension Screenshots
Download WhatsApp Web Shortcuts Extension CRX File
Download WhatsApp Web Shortcuts 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
Allows you to move on to the next chat, select a specific chat and add other shortcuts like archiving, deleting, pinning. An update will soon arrive to customize these shortcuts of your choice. Recommendation: use Whatsapp Web in single tab or as a Google Chrome app for the shortcut Ctrl + Tab to work.
Extension Basic Information
Name | |
ID | cchlfiddnacphaelpppojlgicakkgjcf |
Official URL | https://chrome.google.com/webstore/detail/whatsapp-web-shortcuts/cchlfiddnacphaelpppojlgicakkgjcf |
Description | Add keyboard shortcuts for WhatsApp Web! |
File Size | 32.3 KB |
Installation Count | 591 |
Current Version | 1.4 |
Last Updated | 2021-07-17 |
Publish Date | 2020-12-25 |
Rating | 5.00/5 Total 3 Ratings |
Developer | Edmar Junior |
[email protected] | |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "WhatsApp Web Shortcuts", "description": "Add keyboard shortcuts for WhatsApp Web!", "version": "1.4", "icons": { "16": "assets\/icons\/16.png", "32": "assets\/icons\/32.png", "48": "assets\/icons\/48.png", "64": "assets\/icons\/64.png", "128": "assets\/icons\/128.png" }, "permissions": [ "declarativeContent" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "assets\/icons\/16.png", "32": "assets\/icons\/32.png", "48": "assets\/icons\/48.png", "64": "assets\/icons\/64.png", "128": "assets\/icons\/128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/web.whatsapp.com\/*" ], "js": [ "script.js" ] } ] } |