Created
October 15, 2022 12:37
-
-
Save lyf-is-coding/b56afea6dc94227c0c190ad42024bdcf to your computer and use it in GitHub Desktop.
Revisions
-
lyf-is-coding created this gist
Oct 15, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ // ==UserScript== // @name Anti Anti-Adblocker - linkneverdie.net // @namespace Violentmonkey Scripts // @match https://linkneverdie.net/* // @grant none // @version 1.0 // @author - // @description 10/14/2022, 3:23:08 PM // ==/UserScript== function leet() { console.log("Running"); let collection = document.getElementsByTagName("script"); for (var i = 0; i < collection.length; i) { if (collection[i].innerText.includes("quang-cao")) { console.log(collection[i]); collection[i].remove(); } else { ++i; } } } leet();