WhatsApp Web Shortcuts
Add keyboard shortcuts for WhatsApp Web!
Was ist WhatsApp Web Shortcuts?
WhatsApp Web Shortcuts ist eine Chrome-Erweiterung, die von Edmar Junior entwickelt wurde, und ihr Hauptmerkmal ist "Add keyboard shortcuts for WhatsApp Web!".
Erweiterungsscreenshots
WhatsApp Web Shortcuts-Erweiterungs-CRX-Datei herunterladen
Laden Sie WhatsApp Web Shortcuts-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
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | cchlfiddnacphaelpppojlgicakkgjcf |
Offizielle URL | https://chrome.google.com/webstore/detail/whatsapp-web-shortcuts/cchlfiddnacphaelpppojlgicakkgjcf |
Beschreibung | Add keyboard shortcuts for WhatsApp Web! |
Dateigröße | 32.3 KB |
Installationsanzahl | 591 |
Aktuelle Version | 1.4 |
Letztes Update | 2021-07-17 |
Veröffentlichungsdatum | 2020-12-25 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Edmar Junior |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |