Removes Recommend Videos on Youtube

A distraction free YouTube experience where all the recommend Youtube Videos are removed.

什麼是Removes Recommend Videos on Youtube?

Removes Recommend Videos on Youtube是由YT開發的Chrome擴展程式,該擴展的主要功能是“A distraction free YouTube experience where all the recommend Youtube Videos are removed.”。

擴展截圖

screenshot
screenshot
screenshot

下載Removes Recommend Videos on Youtube擴展crx文件

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

擴展使用說明

                        ⬇️ Easy to set up ⬇️:

1. Install and add the extension to Chrome.
2. If you cannot see the icon, click to the right of the URL bar. Then, click 📌 to pin Unhook.
3. Click on the power button to turn on/off.
4. Choose from the menu what to disable to customize your own YouTube experience.

✨ Features ✨

1. Ability to turn off end-screen video suggestions, user comments, homepage related videos, feed, trending tab, autoplay or annotations, and more.
2. Compatible with mobile YouTube.
3. Dark mode.

Hide distractions related videos, comments, shorts tab, suggestions wall, homepage recommendations, trending, and other while watching a video 🎥 on YouTube.                    

擴展基本資訊

名稱 Removes Recommend Videos on Youtube Removes Recommend Videos on Youtube
ID mlaigmdigmkhpbnljmhajhleifegcchb
官方網址 https://chromewebstore.google.com/detail/removes-recommend-videos/mlaigmdigmkhpbnljmhajhleifegcchb
簡介 A distraction free YouTube experience where all the recommend Youtube Videos are removed.
檔案大小 61.1 KB
安裝次數 43
目前版本 0.0.1
更新時間 2022-12-30
上架時間 2022-12-30
評分 4.00/5 共 4 次評分
開發者 YT
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://docs.google.com/document/d/1cwiY1eFhYYDxMRxOSiiuQpgOBJtcaB022bxkF4KvWX0/edit
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.1",
    "manifest_version": 3,
    "minimum_chrome_version": "90",
    "name": "Removes Recommend Videos on Youtube",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "description": "A distraction free YouTube experience where all the recommend Youtube Videos are removed.",
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_start",
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/m.youtube.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*",
        "https:\/\/m.youtube.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/youtube.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/m.youtube.com\/*"
            ]
        }
    ]
}