NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Moon Faucet work pub killer // @namespace http://tampermonkey.net/ // @version 0.1 // @description Moon Faucet work pub killer // @author ErrZerraXx 2018 // @match http://moonliteco.in/* // @match http://moonbit.co.in/* // @match http://moondoge.co.in/* // @match http://moondash.co.in/* // @match http://moonb.ch/* // @grant none // @require https://code.jquery.com/jquery-2.1.4.min.js // @run-at document-start // @copyright 2018, humanz.no (https://openuserjs.org/users/humanz.no) // @license MIT // @updateURL https://openuserjs.org/meta/humanz.no/Moon_Faucet_work_pub_killer.meta.js // ==/UserScript== (function() { window.navigator.__defineGetter__('userAgent', function () { return 'Mozilla/5.0 (iPad; CPU OS 5_1_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Mobile/9B206'; }); document.addEventListener ("DOMContentLoaded", DOM_ContentReady); function DOM_ContentReady () { var cust_switch = window.location.host; if(cust_switch == "moondoge.co.in" || cust_switch == "moonliteco.in") { $( "#lhsColumn" ).remove(); $( "#rhsColumn" ).remove(); $( "#BodyPlaceholder_claimMidContainer" ).remove(); $( "#advert-space-2" ).remove(); $("#AdArea").remove(); $( ".other-message-panel" ).remove(); document.getElementById("middleColumn").style.width = "100%"; } else if(cust_switch == "moonbit.co.in") { $( "#lhsColumn" ).remove(); $( "#rhsColumn" ).remove(); $( "#BodyPlaceholder_claimMidContainer" ).remove(); $( "#advert-space-2" ).remove(); $( ".advert" ).remove(); $("#AdArea").remove(); $( ".other-message-panel" ).remove(); document.getElementById("middleColumn").style.width = "100%"; } else { $( ".flexBefore" ).remove(); $( ".flexAfter" ).remove(); $( ".slideIn" ).remove(); $( ".flexContentAd" ).remove(); } } })();