Youtube Minimalist
Removes the annoying elements from Youtube for a minimalist experience
Youtube Minimalist란 무엇입니까?
Youtube Minimalist은(는) Hulitaphy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Removes the annoying elements from Youtube for a minimalist experience"입니다.
확장 프로그램 스크린샷
Youtube Minimalist 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
There are many annoying elements that can hamper your experience while browsing youtube, or simply detract your focus from your goal: watching videos!. This extension will give you options to remove the worst to make for a more minimalist experience. Currently, this extension gives you settings to enable or disable these elements on youtube: - The Logo and other icons from being visible - Ads - Search Result Distractions: Anything not a video in the search results - Comment Section Link (Don't want to be accidentally clicking on viruses) - Category Suggestions on the homepage - Youtube Posts in search results - Like buttons (Dislikes are gone, why not likes) - End of video suggestion popups (I already know what I want to watch, thanks algorithm!) - Turn shorts into regular video format from TikTok format If youtube has been annoying you, please give this extension a try! Suggestions and feedback are certainly welcome.
확장 프로그램 기본 정보
이름 | Youtube Minimalist |
ID | dhkbfioggpdjdkocfimgahjmfkmolnap |
공식 URL | https://chromewebstore.google.com/detail/youtube-minimalist/dhkbfioggpdjdkocfimgahjmfkmolnap |
설명 | Removes the annoying elements from Youtube for a minimalist experience |
파일 크기 | 46.07 KB |
설치 횟수 | 36 |
현재 버전 | 0.3 |
최근 업데이트 | 2023-02-06 |
출시 날짜 | 2023-01-03 |
개발자 | Hulitaphy |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "permissions": [ "storage" ], "name": "Youtube Minimalist", "description": "Removes the annoying elements from Youtube for a minimalist experience", "version": "0.3", "author": "Fulivor", "action": { "default_popup": "index.html", "default_title": "Extension Enabler" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "jquery.min.js", "content.js" ] } ], "icons": { "128": "chrome_128.png", "48": "chrome_48.png", "32": "chrome_32.png", "16": "chrome_16.png" } } |