Focused Youtube
Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube
Focused Youtube란 무엇입니까?
Focused Youtube은(는) makaroni4에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube"입니다.
확장 프로그램 스크린샷
Focused Youtube 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is an open-source extension that changes homepage of Youtube (only search bar) and drops recommendations/comments from other pages. Extension requires access to Youtube website to change its outlook. Extension icon opens a popup with an option to show/hide the comments section of a video (to check timestamps in comments, for example). Enjoy <3 Important: the extension doesn't collect any data about Youtube usage.
확장 프로그램 기본 정보
이름 | Focused Youtube |
ID | nfghbmabdoakhobmimnjkamfdnpfammn |
공식 URL | https://chromewebstore.google.com/detail/focused-youtube/nfghbmabdoakhobmimnjkamfdnpfammn |
설명 | Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube |
파일 크기 | 170 KB |
설치 횟수 | 4,232 |
현재 버전 | 1.12 |
최근 업데이트 | 2024-01-27 |
출시 날짜 | 2019-01-06 |
평점 | 4.88/5 총 72 개의 평점 |
개발자 | makaroni4 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/makaroni4/focused_youtube |
도움말 페이지 URL | https://github.com/makaroni4/focused_youtube/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Focused Youtube", "description": "Open source extension that removes comments\/recommendations from Youtube: https:\/\/github.com\/makaroni4\/focused_youtube", "version": "1.12", "author": "Anatoli Makarevich", "icons": { "128": "extension_icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/m.youtube.com\/*" ], "js": [ "assets\/extension.js" ], "css": [ "assets\/extension.css" ], "run_at": "document_end", "all_frames": true } ], "action": { "default_popup": "popup.html" }, "host_permissions": [ "https:\/\/www.youtube.com\/*", "https:\/\/m.youtube.com\/*" ], "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "fonts\/Roboto-Regular.ttf", "assets\/popup.js", "assets\/popup.css", "images\/search_icon.svg", "images\/youtube_logo.png", "images\/search_icon_dark.svg", "images\/youtube_logo_dark.png", "images\/extension_icon.png" ], "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/m.youtube.com\/*" ] } ] } |