Whatsapp sidebar toggler
Lets you toggle between hiding and showing the sidebar on whatsapp web.
Vad är Whatsapp sidebar toggler?
Whatsapp sidebar toggler är en Chrome-tillägg utvecklad av ripper234, och dess huvudfunktion är "Lets you toggle between hiding and showing the sidebar on whatsapp web.".
Tilläggsskärmbilder
Ladda ner Whatsapp sidebar toggler-förlängningens CRX-fil
Ladda ner Whatsapp sidebar toggler-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Zen Mode for Whatsapp - zoom in on a single conversation. Grundläggande Information om Tillägg
| Namn | |
| ID | goefhbjpikdfhmndoponcacbjoinllfp |
| Officiell webbadress | https://chrome.google.com/webstore/detail/whatsapp-sidebar-toggler/goefhbjpikdfhmndoponcacbjoinllfp |
| Beskrivning | Lets you toggle between hiding and showing the sidebar on whatsapp web. |
| Filstorlek | 5.66 KB |
| Antal Installationer | 356 |
| Aktuell Version | 1.0.0 |
| Senast Uppdaterad | 2020-10-28 |
| Publiceringsdatum | 2020-10-28 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | ripper234 |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
}
} | |