Recommendation Tweaker for YouTube
Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!
Recommendation Tweaker for YouTube란 무엇입니까?
Recommendation Tweaker for YouTube은(는) https://benedani.xyz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!"입니다.
확장 프로그램 스크린샷
Recommendation Tweaker for YouTube 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
An open source, purely client-side browser extension that gives you control over YouTube's feed! Get rid of videos you've already seen, useless mixes and everything else you don't like! v2.1 notes: Fixed a bug where an invisible "video" that didn't even exist would cause the extension to error internally. It makes perfect sense, don't question it.
확장 프로그램 기본 정보
이름 | Recommendation Tweaker for YouTube |
ID | jmcdldlbcgjfppbblagddgjbnjajmgec |
공식 URL | https://chromewebstore.google.com/detail/recommendation-tweaker-fo/jmcdldlbcgjfppbblagddgjbnjajmgec |
설명 | Take the trash out! Get rid of the garbage recommendations with this highly customizable extension! |
파일 크기 | 80.81 KB |
설치 횟수 | 269 |
현재 버전 | 2.1 |
최근 업데이트 | 2023-09-26 |
출시 날짜 | 2021-04-30 |
평점 | 3.33/5 총 9 개의 평점 |
개발자 | https://benedani.xyz |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://discord.gg/Zf2k7KK |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Recommendation Tweaker for YouTube", "version": "2.1", "description": "Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!", "author": "Benedani - https:\/\/benedani.xyz\/", "permissions": [ "storage" ], "icons": { "32": "icons\/32.png", "64": "icons\/64.png", "96": "icons\/96.png", "192": "icons\/192.png", "384": "icons\/384.png" }, "browser_action": { "default_icon": { "32": "icons\/32.png", "64": "icons\/64.png", "96": "icons\/96.png", "192": "icons\/192.png", "384": "icons\/384.png" }, "default_title": "Recommendation Tweaker for YouTube", "default_popup": "settings\/a.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "runtweak.js" ] } ], "background": { "scripts": [ "storage.js" ] } } |