Whatsapp sidebar toggler
Lets you toggle between hiding and showing the sidebar on whatsapp web.
Co to jest Whatsapp sidebar toggler?
Whatsapp sidebar toggler to rozszerzenie Chrome opracowane przez ripper234, a jego główną funkcją jest „Lets you toggle between hiding and showing the sidebar on whatsapp web.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Whatsapp sidebar toggler
Pobierz pliki rozszerzeń Whatsapp sidebar toggler w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Zen Mode for Whatsapp - zoom in on a single conversation.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | goefhbjpikdfhmndoponcacbjoinllfp |
Oficjalny URL | https://chrome.google.com/webstore/detail/whatsapp-sidebar-toggler/goefhbjpikdfhmndoponcacbjoinllfp |
Opis | Lets you toggle between hiding and showing the sidebar on whatsapp web. |
Rozmiar pliku | 5.66 KB |
Liczba instalacji | 356 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2020-10-28 |
Data Publikacji | 2020-10-28 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | ripper234 |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |