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.”。
扩展截图
下载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 |
ID | jedeklblgiihonnldgldeagmbkhlblek |
官方URL | 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" ] } |