LookMovie.ag Anti-AdBlockDetection

Just sets the class back to blank when AdBlock is detected

// ==UserScript==
// @name         LookMovie.ag Anti-AdBlockDetection
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Just sets the class back to blank when AdBlock is detected
// @author       LethalLuck
// @match        https://lookmovie.ag/*
// @match        https://lookmovie.io/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
document.body.className = '';
    // Your code here...
})();