Youtube Ad Blocker by Bluemoon

Youtube ads blocker

// ==UserScript==
// @name         Youtube Ad Blocker by Bluemoon
// @namespace    http://tampermonkey.net/
// @license MI
// @version      0.1
// @description  Youtube ads  blocker
// @author       IND-BLUEMOON_YT#4211
// @match        https://www.youtube.com/*
// @grant        none
// ==/UserScript==
(function() {
    'use strict';
    var ad = document.getElementById('ad');
    if (ad) {
        ad.parentNode.removeChild(ad);
    }
})();