Whatsapp sidebar toggler
Lets you toggle between hiding and showing the sidebar on whatsapp web.
Co je Whatsapp sidebar toggler?
Whatsapp sidebar toggler je rozšíření Chrome vyvinuté ripper234, a jeho hlavní funkcí je „Lets you toggle between hiding and showing the sidebar on whatsapp web.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Whatsapp sidebar toggler
Stáhněte si soubory rozšíření Whatsapp sidebar toggler ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Zen Mode for Whatsapp - zoom in on a single conversation.
Základní Informace o Rozšíření
Název | |
ID | goefhbjpikdfhmndoponcacbjoinllfp |
Oficiální URL | https://chrome.google.com/webstore/detail/whatsapp-sidebar-toggler/goefhbjpikdfhmndoponcacbjoinllfp |
Popis | Lets you toggle between hiding and showing the sidebar on whatsapp web. |
Velikost souboru | 5.66 KB |
Počet instalací | 356 |
Aktuální Verze | 1.0.0 |
Poslední Aktualizace | 2020-10-28 |
Datum Vydání | 2020-10-28 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | ripper234 |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" } } |