YouTube Distraction Disabler

Remove distracting video suggestions on YouTube.

YouTube Distraction Disablerとは何ですか?

YouTube Distraction Disablerはkaiqi.liangによって開発されたChromeの拡張機能で、その主な機能は「Remove distracting video suggestions on YouTube.」です。

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

screenshot

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

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

拡張機能の使用方法

                        Just spent an hour on YouTube but still haven't got to the video that you set out to watch? Wanted to learn something on YouTube but always get distracted by your recommended feed? Fear no more, "YouTube Distraction Disabler" is here to remove all of the unrelated videos on YouTube and only show you what you want.

Finally got some free time and want to deliberately procrastinate on YouTube? That's ok too, just simply click the extension icon and turn off one of the options that you choose to block. The options are "Home", "Related", "Comments" and "Notifications", which corresponds to your home feed, related videos next to the video you're currently watching, the comments down below as well as the notification bell.                    

拡張機能の基本情報

名前 YouTube Distraction Disabler YouTube Distraction Disabler
ID klhmhijgenkomhcobnbdnjkkefbghfab
公式URL https://chromewebstore.google.com/detail/youtube-distraction-disab/klhmhijgenkomhcobnbdnjkkefbghfab
説明 Remove distracting video suggestions on YouTube.
ファイルサイズ 12.64 KB
インストール数 163
現在のバージョン 0.0.4
最終更新日 2023-01-18
公開日 2020-12-07
評価 5.00/5 合計 5 レビュー
開発者 kaiqi.liang
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/Kaiqi-Liang/YouTube-Distraction-Disabler
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Distraction Disabler",
    "version": "0.0.4",
    "description": "Remove distracting video suggestions on YouTube.",
    "manifest_version": 2,
    "page_action": {
        "default_icon": "assets\/logo.png"
    },
    "icons": {
        "128": "assets\/logo.png"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "extension.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "assets\/*.svg"
    ]
}