Youtube zen mode

Improved layout, dark mode, removable recommendations and comment section.

Vad är Youtube zen mode?

Youtube zen mode är en Chrome-tillägg utvecklad av Adrien Coffre, och dess huvudfunktion är "Improved layout, dark mode, removable recommendations and comment section.".

Tilläggsskärmbilder

screenshot

Ladda ner Youtube zen mode-förlängningens CRX-fil

Ladda ner Youtube zen mode-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

                        Allows to tailor hidden sections (comments, recommendations) and implements a dark mode                    

Grundläggande Information om Tillägg

Namn Youtube zen mode Youtube zen mode
ID aeblekonbpcjmpcmodmonjcgdcdemdig
Officiell webbadress https://chromewebstore.google.com/detail/youtube-zen-mode/aeblekonbpcjmpcmodmonjcgdcdemdig
Beskrivning Improved layout, dark mode, removable recommendations and comment section.
Filstorlek 24.7 KB
Antal Installationer 24
Aktuell Version 0.0.1
Senast Uppdaterad 2020-04-15
Publiceringsdatum 2020-04-15
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare Adrien Coffre
Betalningssätt free
Hjälpsida URL https://github.com/Astrak/youtube-zen-mode
Stödda Språk 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"
            ]
        }
    ]
}