Youtube zen mode
Improved layout, dark mode, removable recommendations and comment section.
Wat is Youtube zen mode?
Youtube zen mode is een Chrome-extensie ontwikkeld door Adrien Coffre, en de belangrijkste functie is "Improved layout, dark mode, removable recommendations and comment section.".
Extensie Screenshots
Download het CRX-bestand van de extensie Youtube zen mode
Download Youtube zen mode-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
Allows to tailor hidden sections (comments, recommendations) and implements a dark mode Basisinformatie over de Extensie
| Naam | |
| ID | aeblekonbpcjmpcmodmonjcgdcdemdig |
| Officiële URL | https://chromewebstore.google.com/detail/youtube-zen-mode/aeblekonbpcjmpcmodmonjcgdcdemdig |
| Beschrijving | Improved layout, dark mode, removable recommendations and comment section. |
| Bestandsgrootte | 24.7 KB |
| Aantal Installaties | 24 |
| Huidige Versie | 0.0.1 |
| Laatst Bijgewerkt | 2020-04-15 |
| Publicatiedatum | 2020-04-15 |
| Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
| Ontwikkelaar | Adrien Coffre |
| Betalingswijze | free |
| Help Pagina-URL | https://github.com/Astrak/youtube-zen-mode |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Youtube zen mode",
"version": "0.0.1",
"description": "Improved layout, dark mode, removable recommendations and comment section.",
"manifest_version": 2,
"browser_action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "images\/yzm16.png",
"32": "images\/yzm32.png",
"48": "images\/yzm48.png",
"128": "images\/yzm128.png"
}
},
"icons": {
"16": "images\/yzm16.png",
"32": "images\/yzm32.png",
"48": "images\/yzm48.png",
"128": "images\/yzm128.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"all_frames": true,
"js": [
"content\/content.js"
],
"css": [
"content\/content.css"
]
}
]
} | |