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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |