Whatsapp sidebar toggler
Lets you toggle between hiding and showing the sidebar on whatsapp web.
Qu'est-ce que Whatsapp sidebar toggler ?
Whatsapp sidebar toggler est une extension Chrome développée par ripper234, et sa fonction principale est "Lets you toggle between hiding and showing the sidebar on whatsapp web.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Whatsapp sidebar toggler
Téléchargez les fichiers d'extension Whatsapp sidebar toggler au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Zen Mode for Whatsapp - zoom in on a single conversation.
Informations de Base sur l'Extension
Nom | |
ID | goefhbjpikdfhmndoponcacbjoinllfp |
URL Officiel | https://chrome.google.com/webstore/detail/whatsapp-sidebar-toggler/goefhbjpikdfhmndoponcacbjoinllfp |
Description | Lets you toggle between hiding and showing the sidebar on whatsapp web. |
Taille du Fichier | 5.66 KB |
Nombre d'Installations | 356 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2020-10-28 |
Date de Publication | 2020-10-28 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | ripper234 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Whatsapp sidebar toggler", "version": "1.0.0", "description": "Lets you toggle between hiding and showing the sidebar on whatsapp web.", "manifest_version": 2, "permissions": [ "tabs", "storage" ], "background": { "scripts": [ ".\/src\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/web.whatsapp.com\/" ], "run_at": "document_idle", "js": [ ".\/src\/content.js" ] } ], "browser_action": { "default_icon": { "16": ".\/images\/icons\/icon.png", "48": ".\/images\/icons\/icon.png" } }, "icons": { "16": ".\/images\/icons\/icon.png", "48": ".\/images\/icons\/icon.png", "128": ".\/images\/icons\/icon.png" } } |