rhyzzo / Vizer.TV Anti Ad-Block Killer

// ==UserScript==
// @name         Vizer.TV Anti Ad-Block Killer
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Remove o anti ad-blocker do vizer.tv
// @author       Rhyzzo
// @require     http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// @match        http://vizer.tv/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $(".adBlockDetected").hide();
})();