YouTube Card Blocker
Blocks cards from showing in YouTube videos.
What is YouTube Card Blocker?
YouTube Card Blocker is a Chrome extension developed by Unknown, and its main feature is "Blocks cards from showing in YouTube videos.".
Extension Screenshots
Download YouTube Card Blocker Extension CRX File
Download YouTube Card Blocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | YouTube Card Blocker |
ID | faabmlkblchainmfmilhjigidncpdpkb |
Official URL | https://chromewebstore.google.com/detail/youtube-card-blocker/faabmlkblchainmfmilhjigidncpdpkb |
Description | Blocks cards from showing in YouTube videos. |
File Size | 25.77 KB |
Installation Count | 134 |
Current Version | 1.0.0 |
Last Updated | 2020-04-05 |
Publish Date | 2020-04-05 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | 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" ] } |