YouTube Entertainment Blocker

Transform YouTube into a healthy, educational platform.

什麼是YouTube Entertainment Blocker?

YouTube Entertainment Blocker是由Thomas Codes開發的Chrome擴展程式,該擴展的主要功能是“Transform YouTube into a healthy, educational platform.”。

擴展截圖

screenshot
screenshot
screenshot

下載YouTube Entertainment Blocker擴展crx文件

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

擴展使用說明

                        Completely transform YouTube into a more productive, more healthy platform.

This extension filters your YouTube feed by checking the categories of the videos on your feed, and keeping only the videos that are under the "useful" categories (Education, Science & Technology, HowTo & Style). If the user attempts to open a video that is not under the previous categories, the user will be redirected backwards.

It also blocks YouTube Shorts, the mini-player and the explore page.                    

擴展基本資訊

名稱 YouTube Entertainment Blocker YouTube Entertainment Blocker
ID ejomhdacjcmfbohjlngmipjlcmfimccj
官方網址 https://chrome.google.com/webstore/detail/youtube-entertainment-blo/ejomhdacjcmfbohjlngmipjlcmfimccj
簡介 Transform YouTube into a healthy, educational platform.
檔案大小 16.22 KB
安裝次數 165
目前版本 2.3
更新時間 2023-07-13
上架時間 2022-03-28
評分 4.86/5 共 7 次評分
開發者 Thomas Codes
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Entertainment Blocker",
    "description": "Transform YouTube into a healthy, educational platform.",
    "permissions": [
        "notifications"
    ],
    "version": "2.3",
    "icons": {
        "16": "\/images\/icon16.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "video_layout.css"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}