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 |
Eメール | [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" ] } |