iarp / Hide youtube cards

// ==UserScript==
// @name         Hide youtube cards
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Hides/Disables all youtube cards that appear on top of videos.
// @author       You
// @include         http*://*.youtube.com/*
// @include         http*://youtube.com/*
// @include         http*://*.youtu.be/*
// @include         http*://youtu.be/*
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js
// ==/UserScript==

(function() {
    'use strict';

    window.setInterval(function() {
        $('.ytp-ce-element-show').hide();
    }, 1000);

    // Your code here...
})();