YouTube Zen Mode

Get rid of all the distractions on YouTube

YouTube Zen Modeとは何ですか?

YouTube Zen ModeはMarblによって開発されたChromeの拡張機能で、その主な機能は「Get rid of all the distractions on YouTube」です。

拡張機能のスクリーンショット

screenshot

YouTube Zen Mode拡張機能のCRXファイルをダウンロード

YouTube Zen Mode拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 YouTube Zen Mode YouTube Zen Mode
ID dgdfifjibepijpnledojfgcaggckaclb
公式URL https://chromewebstore.google.com/detail/youtube-zen-mode/dgdfifjibepijpnledojfgcaggckaclb
説明 Get rid of all the distractions on YouTube
ファイルサイズ 399 KB
インストール数 212
現在のバージョン 2.1.2
最終更新日 2023-01-10
公開日 2020-11-14
評価 5.00/5 合計 6 レビュー
開発者 Marbl
Eメール [email protected]
支払い方法 free
対応言語 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"
        }
    ]
}