WhatsApp Web Shortcuts
Add keyboard shortcuts for WhatsApp Web!
Cos'è WhatsApp Web Shortcuts?
WhatsApp Web Shortcuts è un'estensione di Chrome sviluppata da Edmar Junior, e la sua funzione principale è "Add keyboard shortcuts for WhatsApp Web!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione WhatsApp Web Shortcuts
Scarica i file di estensione WhatsApp Web Shortcuts in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | cchlfiddnacphaelpppojlgicakkgjcf |
URL Ufficiale | https://chrome.google.com/webstore/detail/whatsapp-web-shortcuts/cchlfiddnacphaelpppojlgicakkgjcf |
Descrizione | Add keyboard shortcuts for WhatsApp Web! |
Dimensione del File | 32.3 KB |
Conteggio Installazioni | 591 |
Versione Corrente | 1.4 |
Ultimo Aggiornamento | 2021-07-17 |
Data di Pubblicazione | 2020-12-25 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | Edmar Junior |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |