Youtube Distraction Filter
Remove distracting elements from youtube
Youtube Distraction Filter란 무엇입니까?
Youtube Distraction Filter은(는) Tom Headifen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove distracting elements from youtube"입니다.
확장 프로그램 스크린샷
Youtube Distraction Filter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This Chrome extension by default will remove the comment section and related video section whenever you are watching a video. This helps users not get distracted by participating in pointless conversation or getting fooled by click bait videos. Known bugs: -If you navigate to a video from within the youtube website the filter will not kick in. It will only work if you navigate straight to the video from a different website/link. Change Log: September 4th 2017: -Youtube recently had an update, changed fields names that are targeted to be filtered to keep up with these changes. August 5th 2019 -Fixed bug where related videos wouldn't hide.
확장 프로그램 기본 정보
이름 | Youtube Distraction Filter |
ID | bcbpflcbmnnpdhjmfblndddmoimlimbf |
공식 URL | https://chromewebstore.google.com/detail/youtube-distraction-filte/bcbpflcbmnnpdhjmfblndddmoimlimbf |
설명 | Remove distracting elements from youtube |
파일 크기 | 7.3 KB |
설치 횟수 | 99 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2019-08-06 |
출시 날짜 | 2019-08-05 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Tom Headifen |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/tomheadifen/youtube-distraction-filter |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Distraction Filter", "description": "Remove distracting elements from youtube", "version": "1.0.2", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": "eye-icon.png", "default_title": "Youtube Distraction Filter", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "youtube-distraction-filter.js" ], "run_at": "document_end" } ], "permissions": [ "declarativeContent", "storage" ] } |