Whatsapp sidebar toggler
Lets you toggle between hiding and showing the sidebar on whatsapp web.
Wat is Whatsapp sidebar toggler?
Whatsapp sidebar toggler is een Chrome-extensie ontwikkeld door ripper234, en de belangrijkste functie is "Lets you toggle between hiding and showing the sidebar on whatsapp web.".
Extensie Screenshots
Download het CRX-bestand van de extensie Whatsapp sidebar toggler
Download Whatsapp sidebar toggler-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Zen Mode for Whatsapp - zoom in on a single conversation.
Basisinformatie over de Extensie
Naam | |
ID | goefhbjpikdfhmndoponcacbjoinllfp |
Officiële URL | https://chrome.google.com/webstore/detail/whatsapp-sidebar-toggler/goefhbjpikdfhmndoponcacbjoinllfp |
Beschrijving | Lets you toggle between hiding and showing the sidebar on whatsapp web. |
Bestandsgrootte | 5.66 KB |
Aantal Installaties | 356 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2020-10-28 |
Publicatiedatum | 2020-10-28 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | ripper234 |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |