YouTube Sub Hider
Extension that hides specified subscriptions
YouTube Sub Hider란 무엇입니까?
YouTube Sub Hider은(는) bggrund에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension that hides specified subscriptions"입니다.
확장 프로그램 스크린샷
YouTube Sub Hider 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Simple extension that hides specified YouTube channels from your subscriptions page. Maybe a channel has recently filled your feed with videos you aren't interested in. Maybe a channel started posting a video series you aren't interested in, but you want to remain subscribed for future content. This extension let's you toggle a channel's videos from appearing in your subscription feed without unsubscribing from the channel. Features: -"Hide" button next to the channel name on each video -Popup menu that allows you to enter channels to hide manually, toggle whether a hidden channel is enabled, remove channels that have been hidden, and toggle the extension altogether. -Saves channel data to your browser for persistence between sessions -Continues hiding specified channels as you scroll through your subscription feed Source code: https://github.com/bggrund/YouTubeSubHider
확장 프로그램 기본 정보
이름 | YouTube Sub Hider |
ID | egehbpolcfiodjjnkmlpfegegpogcefm |
공식 URL | https://chromewebstore.google.com/detail/youtube-sub-hider/egehbpolcfiodjjnkmlpfegegpogcefm |
설명 | Extension that hides specified subscriptions |
파일 크기 | 13.05 KB |
설치 횟수 | 95 |
현재 버전 | 1.2 |
최근 업데이트 | 2023-06-12 |
출시 날짜 | 2021-07-20 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | bggrund |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/bggrund/YouTubeSubHider |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Sub Hider", "version": "1.2", "description": "Extension that hides specified subscriptions", "icons": { "128": "icon128.png", "48": "icon48.png", "16": "icon16.png" }, "browser_action": { "default_icon": "icon16.png", "default_popup": "popup.html" }, "permissions": [ "storage", "*:\/\/*.youtube.com\/feed\/subscriptions" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/feed\/subscriptions" ], "js": [ "content-script.js" ], "css": [ "content-script.css" ], "run_at": "document_idle" } ] } |