Recommendation filter for YouTube
Customise which recommendations are shown on YouTube.
Recommendation filter for YouTube란 무엇입니까?
Recommendation filter for YouTube은(는) Leolime에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customise which recommendations are shown on YouTube."입니다.
확장 프로그램 스크린샷
Recommendation filter for YouTube 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
YouTube can be a powerful tool for learning but sometimes the entertaining recommendations get in the way... ✔️ Why use Recommendation filter for YouTube? • Are you easily distracted? Use YouTube to it's full potential by hiding distracting recommendations when you are trying to be productive. • Filter recommendations to only show what you are currently interested in. • Avoid tempting click bait in the recommendation section by filtering out a topic or YouTuber.
확장 프로그램 기본 정보
이름 | Recommendation filter for YouTube |
ID | eoelfnihmeicibagdaalkdhmmdohcgml |
공식 URL | https://chromewebstore.google.com/detail/recommendation-filter-for/eoelfnihmeicibagdaalkdhmmdohcgml |
설명 | Customise which recommendations are shown on YouTube. |
파일 크기 | 46.61 KB |
설치 횟수 | 408 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2020-08-19 |
출시 날짜 | 2020-08-19 |
평점 | 3.83/5 총 6 개의 평점 |
개발자 | Leolime |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://docs.google.com/document/d/1nRwylTnUtAHl0rEvWytJNHfBotJ0WvcDa6_BKfwAkMM |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Recommendation filter for YouTube", "description": "Customise which recommendations are shown on YouTube.", "version": "1.0.0", "permissions": [ "*:\/\/www.youtube.com\/*", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "dist\/content\/bundle.js" ], "css": [ "style\/content.css" ], "all_frames": true, "run_at": "document_end" } ], "background": { "scripts": [ "dist\/background\/bundle.js" ] }, "browser_action": { "default_popup": "layout\/popup.html", "default_icon": { "48": "images\/ic_48.png", "128": "images\/ic_128.png" } }, "options_ui": { "page": "layout\/popup.html", "open_in_tab": false }, "icons": { "48": "images\/ic_48.png", "128": "images\/ic_128.png" }, "manifest_version": 2, "web_accessible_resources": [ "images\/*.svg", "style\/*.css" ], "minimum_chrome_version": "5" } |