try to take over the world!
// ==UserScript==
// @name freetutsdownload without AD
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://freetutsdownload.net/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var modalWindow = document.getElementById('modal-adbmon-div468774');
if(modalWindow){
modalWindow.parentNode.removeChild(modalWindow);
}else{
modalWindow = document.getElementById('modal-adbmon-div988551');
if(modalWindow){
modalWindow.parentNode.removeChild(modalWindow);
}
}
// Your code here...
})();