YouTube Focus Mode

Chrome Extension that allows you to focus by blocking YouTube videos from 'distractive' categories.

什麼是YouTube Focus Mode?

YouTube Focus Mode是由Saramsha Dotel開發的Chrome擴展程式,該擴展的主要功能是“Chrome Extension that allows you to focus by blocking YouTube videos from 'distractive' categories.”。

擴展截圖

screenshot
screenshot
screenshot

下載YouTube Focus Mode擴展crx文件

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

擴展使用說明

                        This chrome extension allows you to select the type of videos that you want to see in your YouTube feed and blocks/hides all other videos that do not belong to the selected categories. Most of the extensions block the entire feed and hide all recommendations which might not be what you want while studying or focusing on learning a topic. By selectively blocking the distracting videos only, this extension allows you to focus on what's important and prevents you from getting distracted into the YouTube rabbithole.

The extension currently works in 3 scenarios within YouTube:
- Home Feed
- Search Results
- Video player and its accompanying recommendation column                    

擴展基本資訊

名稱 YouTube Focus Mode YouTube Focus Mode
ID jedeklblgiihonnldgldeagmbkhlblek
官方網址 https://chromewebstore.google.com/detail/youtube-focus-mode/jedeklblgiihonnldgldeagmbkhlblek
簡介 Chrome Extension that allows you to focus by blocking YouTube videos from 'distractive' categories.
檔案大小 173 KB
安裝次數 1,961
目前版本 1.0.0
更新時間 2021-03-29
上架時間 2021-03-29
評分 4.04/5 共 23 次評分
開發者 Saramsha Dotel
電子郵箱 [email protected]
付費類型 free
擴展官網 https://dotelsaramsha.com/
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Focus Mode",
    "description": "Chrome Extension that allows you to focus by blocking YouTube videos from 'distractive' categories.",
    "manifest_version": 3,
    "version": "1.0.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": {
            "128": "icon128.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}