NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name FS online Ads remover // @namespace http://www.filmeserialeonline.org/ // @icon http://www.filmeserialeonline.org/wp-content/uploads/favicon.png // @homepageURL https://openuserjs.org/scripts/Electricity/FS_online_Ads_remover // @version 1 // @author Electricity // @description Remove Ads filmeserialeonline.org // @include http://www.filmeserialeonline.org/* // @run-at document-end // @updateURL https://openuserjs.org/meta/Electricity/FS_online_Ads_remover.meta.js // ==/UserScript== (function() { 'use strict'; document.getElementsByClassName('bp-wrapp20052016')[0].remove(); document.getElementsByClassName('bp-footer20052016')[0].remove(); document.getElementsByTagName('link')[document.getElementsByTagName('link').length - 1].remove(); document.body.style.background = "#000000"; document.getElementsByClassName('SC_TBlock')[0].remove(); // Your code here... })();