Youtube zen mode

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

什麼是Youtube zen mode?

Youtube zen mode是由Adrien Coffre開發的Chrome擴展程式,該擴展的主要功能是“Improved layout, dark mode, removable recommendations and comment section.”。

擴展截圖

screenshot

下載Youtube zen mode擴展crx文件

下載Youtube zen mode擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Youtube zen mode Youtube zen mode
ID aeblekonbpcjmpcmodmonjcgdcdemdig
官方網址 https://chromewebstore.google.com/detail/youtube-zen-mode/aeblekonbpcjmpcmodmonjcgdcdemdig
簡介 Improved layout, dark mode, removable recommendations and comment section.
檔案大小 24.7 KB
安裝次數 24
目前版本 0.0.1
更新時間 2020-04-15
上架時間 2020-04-15
評分 5.00/5 共 3 次評分
開發者 Adrien Coffre
付費類型 free
說明頁面URL https://github.com/Astrak/youtube-zen-mode
支援的語言 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"
            ]
        }
    ]
}