YouTube Zen Mode
Get rid of all the distractions on YouTube
Was ist YouTube Zen Mode?
YouTube Zen Mode ist eine Chrome-Erweiterung, die von Marbl entwickelt wurde, und ihr Hauptmerkmal ist "Get rid of all the distractions on YouTube".
Erweiterungsscreenshots
YouTube Zen Mode-Erweiterungs-CRX-Datei herunterladen
Laden Sie YouTube Zen Mode-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Zen mode extension removes distractions from YouTube. May it be a content such as a news feed, notifications or suggestions of similar videos to the one you are currently watching on youtube. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | dgdfifjibepijpnledojfgcaggckaclb |
| Offizielle URL | https://chromewebstore.google.com/detail/youtube-zen-mode/dgdfifjibepijpnledojfgcaggckaclb |
| Beschreibung | Get rid of all the distractions on YouTube |
| Dateigröße | 399 KB |
| Installationsanzahl | 212 |
| Aktuelle Version | 2.1.2 |
| Letztes Update | 2023-01-10 |
| Veröffentlichungsdatum | 2020-11-14 |
| Bewertung | 5.00/5 Insgesamt 6 Bewertungen |
| Entwickler | Marbl |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "YouTube Zen Mode",
"version": "2.1.2",
"description": "Get rid of all the distractions on YouTube",
"manifest_version": 3,
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"storage",
"tabs",
"webNavigation",
"webRequest"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"action": {
"default_popup": "popup.html",
"default_title": "Zen",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"background": {
"service_worker": "background.js"
},
"browser_specific_settings": {
"gecko": {
"id": "{80b1557a-ec9a-4e6e-8877-8aa4f146c413}"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"youtube\/main.js"
],
"css": [
"youtube\/youtube.css"
],
"run_at": "document_end"
}
]
} | |