YouTube Card Blocker
Blocks cards from showing in YouTube videos.
YouTube Card Blocker란 무엇입니까?
YouTube Card Blocker은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Blocks cards from showing in YouTube videos."입니다.
확장 프로그램 스크린샷
YouTube Card Blocker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Have you ever been watching a YouTube video and the last part of the video is covered by the end screen cards? This extension blocks those end screen cards from appearing, allowing you to watch the whole video without missing any content!
확장 프로그램 기본 정보
이름 | YouTube Card Blocker |
ID | faabmlkblchainmfmilhjigidncpdpkb |
공식 URL | https://chromewebstore.google.com/detail/youtube-card-blocker/faabmlkblchainmfmilhjigidncpdpkb |
설명 | Blocks cards from showing in YouTube videos. |
파일 크기 | 25.77 KB |
설치 횟수 | 134 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2020-04-05 |
출시 날짜 | 2020-04-05 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Unknown |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Card Blocker", "description": "Blocks cards from showing in YouTube videos.", "version": "1.0.0", "browser_action": { "default_icon": { "256": "youtube-card-blocker-256.png", "128": "youtube-card-blocker-128.png", "64": "youtube-card-blocker-64.png", "32": "youtube-card-blocker-32.png", "16": "youtube-card-blocker-16.png" } }, "content_scripts": [ { "js": [ "youtubeCardBlocker.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "web_accessible_resources": [ "youtubeCardBlocker.css" ] } |