WhatsApp Web Shortcuts
Add keyboard shortcuts for WhatsApp Web!
Hvad er WhatsApp Web Shortcuts?
WhatsApp Web Shortcuts er en Chrome-udvidelse udviklet af Edmar Junior, og dens hovedfunktion er "Add keyboard shortcuts for WhatsApp Web!".
Udvidelsesskærmbilleder
Download WhatsApp Web Shortcuts-udvidelses-CRX-fil
Download WhatsApp Web Shortcuts-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | cchlfiddnacphaelpppojlgicakkgjcf |
Officiel URL | https://chrome.google.com/webstore/detail/whatsapp-web-shortcuts/cchlfiddnacphaelpppojlgicakkgjcf |
Beskrivelse | Add keyboard shortcuts for WhatsApp Web! |
Filstørrelse | 32.3 KB |
Antal Installationer | 591 |
Nuværende Version | 1.4 |
Senest Opdateret | 2021-07-17 |
Udgivelsesdato | 2020-12-25 |
Bedømmelse | 5.00/5 Samlet 3 Bedømmelser |
Udvikler | Edmar Junior |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } ] } |