NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @author Ajay Kumar (ajaybnl@gmail.com) // @name Connect Punjab Broadband News Ad Remover // @namespace https://mypi.space/ // @version 1.0 // @copyright 2019, ajaybnl (https://openuserjs.org/users/ajaybnl) // @license MIT // @description Remove Connect Punjab (or Any) Broadband News Ad Page // @include *.websiteforever.com/* // @run-at document-start // ==/UserScript== var url = window.location.href; if (url.search("cb.websiteforever.com") >= 0) { url = url.replace('https://cb.websiteforever.com/?req_url=',''); url = url.replace('http://cb.websiteforever.com/?req_url=',''); var m=url.indexOf("&usid="); url=url.slice(0, m); window.location = url; }