Mindfully. Hide YouTube End Cards
Mindfully Hides YouTube end cards so you don't miss the climax part of the music video or movie clip
What is Mindfully. Hide YouTube End Cards?
Mindfully. Hide YouTube End Cards is a Chrome extension developed by https://tamalchowdhury.com, and its main feature is "Mindfully Hides YouTube end cards so you don't miss the climax part of the music video or movie clip".
Extension Screenshots
Download Mindfully. Hide YouTube End Cards Extension CRX File
Download Mindfully. Hide YouTube End Cards 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
Don't you hate when YouTube puts those annoying cards at the end of every music video or a movie clip? Mindfully will automatically hide all end cards from YouTube so you won't miss your favorite scene!
Extension Basic Information
Name | Mindfully. Hide YouTube End Cards |
ID | ifmbbceocmponbpifmpkkhnidmgopmmf |
Official URL | https://chromewebstore.google.com/detail/mindfully-hide-youtube-en/ifmbbceocmponbpifmpkkhnidmgopmmf |
Description | Mindfully Hides YouTube end cards so you don't miss the climax part of the music video or movie clip |
File Size | 257 KB |
Installation Count | 2,913 |
Current Version | 2.0.1 |
Last Updated | 2024-03-04 |
Publish Date | 2020-04-11 |
Rating | 5.00/5 Total 19 Ratings |
Developer | https://tamalchowdhury.com |
[email protected] | |
Payment Type | free |
Extension Website | https://tamalchowdhury.com |
Help Page URL | https://twitter.com/tamalchow |
Privacy Policy Page URL | https://www.freeprivacypolicy.com/live/9336526f-6e40-4cc5-98ef-7552e7739931 |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Mindfully. Hide YouTube End Cards", "version": "2.0.1", "description": "Mindfully Hides YouTube end cards so you don't miss the climax part of the music video or movie clip", "permissions": [ "declarativeContent" ], "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_popup": "pages\/popup.html", "default_title": "Mindfully. Hides YouTube Distractions" }, "options_page": "pages\/installed.html", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "run_at": "document_idle", "js": [ "content.js" ], "all_frames": false } ], "icons": { "16": "images\/icon128.png", "32": "images\/icon128.png", "48": "images\/icon128.png", "128": "images\/icon128.png" } } |