Block Youtube Channels
Blocks Youtube channels and hides their videos.
Block Youtube Channels란 무엇입니까?
Block Youtube Channels은(는) blockchannel.ytb에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Blocks Youtube channels and hides their videos."입니다.
확장 프로그램 스크린샷
Block Youtube Channels 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Allows you to hide videos uploaded by certain Youtube channels from appearing in you feed and other locations on Youtube. You can also hide videos based on some keywords. Features * Hide videos by blocked channels * Hide videos whose title contain blocked keywords NOTE: Channels are not blocked, only videos uploaded by them are hidden in Youtube. Changelog Version 2.00 * Add keyword based blocking * Badge text Version 1.4 * Minor fixes Version 1.3 * Hide related/featured channels * Minor fixes Version 1.2 * Make it work with channels without user * Add links to blocked channels * Bug fix to hide videos in sidebar Version 1.1 * Add 'Block' button to videos page.
확장 프로그램 기본 정보
이름 | |
ID | bdabpienmkhglpmbkmnlhhcikogkihim |
공식 URL | https://chrome.google.com/webstore/detail/block-youtube-channels/bdabpienmkhglpmbkmnlhhcikogkihim |
설명 | Blocks Youtube channels and hides their videos. |
파일 크기 | 53.88 KB |
설치 횟수 | 5,000 |
현재 버전 | 2.2.1 |
최근 업데이트 | 2017-07-09 |
출시 날짜 | 2017-07-09 |
평점 | 1.89/5 총 104 개의 평점 |
개발자 | blockchannel.ytb |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/aniket134/blockchannel |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Block Youtube Channels", "description": "Blocks Youtube channels and hides their videos.", "version": "2.2.1", "browser_action": { "default_icon": { "32": "icon32.png" }, "default_title": "Block Youtube Channels", "default_popup": "popup.html" }, "permissions": [ "storage", "webNavigation", "tabs", "declarativeContent", "activeTab", "*:\/\/*.youtube.com\/*", "*:\/\/youtube.com\/*" ], "background": { "scripts": [ "jquery.js", "events.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/youtube.com\/*" ], "js": [ "jquery.js", "utils.js", "trie.js", "db.js", "content_script.js" ], "run_at": "document_end" } ] } |