Tech notes

Daily notes about my IT activities.

2018-07-29

Hide end cards at the end of Youtube videos

by hackprime

The Youtube service provides videomakers with a feature called “end cards”. This is a big rectangle links with suggestions what to see on the current channel that you can see at the end of video. But sometimes end cards could make difficult to see the video itself.

There is no a way to disable them at the current time, but this CSS hack will help us

.ytp-ce-element {
    display: none !important;
}