Youtube Recommendation Modifier
Extension that allows user to filter their YouTube Homepage Recommendation.
Youtube Recommendation Modifier란 무엇입니까?
Youtube Recommendation Modifier은(는) havefocus에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension that allows user to filter their YouTube Homepage Recommendation."입니다.
확장 프로그램 스크린샷
Youtube Recommendation Modifier 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A chrome extension that gives power💪 to the user to modify their YouTube homepage Recommendation in order to increase their productivity 😎. It is free of charge. We created because we badly needed it for our own use, and wanted to share it with the world 😊. Most of the time we visit YouTube, we end up wasting a lot of time because of some addictive recommendations on the homepage. YouTube's algorithm is designed to make you addicted to short-time pleasure videos so as to increase your retention time on their platform 😨, but this extension will allow you to choose what categories you want to see 😋. The aim of this extension is to get rid of such recommendations and let the user decide their feed. It is very simple to use just select the categories which you want to have in your feed and click on submit. This extension unlike other extensions doesn't remove the whole feed but only removes the categories of videos which the user don't want in their feed. As of now the extension only works on the YouTube Homepage. We are continuously working to make it more user-friendly. HOW TO USE THE YOUTUBE RECOMMENDATION MODIFIER EXTENSION 1. Install the extension for Chrome Browser. 2. Add the extension to the chrome toolbar for faster access. 2. Go to www.youtube.com 3. Open extension from toolbar and select the categories of which videos you want to have in your feed 4. Click on Submit. All the video related to unselected categories will get hidden. PRIVACY NOTICE: YouTube Recommendation Modifier does not collect *any* personal information, nor does it track any information about which sites you have visited or for how long. It also does not transmit any of your data off your own computer. for any queries/feedback please fill the form attached on extension.
확장 프로그램 기본 정보
이름 | Youtube Recommendation Modifier |
ID | okiekjodafhephhckglfhcbamodkdibo |
공식 URL | https://chrome.google.com/webstore/detail/youtube-recommendation-mo/okiekjodafhephhckglfhcbamodkdibo |
설명 | Extension that allows user to filter their YouTube Homepage Recommendation. |
파일 크기 | 61.5 KB |
설치 횟수 | 147 |
현재 버전 | 1.3 |
최근 업데이트 | 2023-03-20 |
출시 날짜 | 2022-07-10 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | havefocus |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Recommendation Modifier", "version": "1.3", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/" ], "js": [ "content_main.js" ] } ], "background": { "service_worker": "sw.js" }, "description": "Extension that allows user to filter their YouTube Homepage Recommendation.", "action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Youtube Recommendation Modifier" }, "icons": { "128": "icon.png" }, "permissions": [ "storage" ] } |