-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup-blocker-and-recaptcha-solver.user.js
43 lines (41 loc) · 1.96 KB
/
popup-blocker-and-recaptcha-solver.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// ==UserScript==
// @name All Popups Blocker and reCAPTCHA Solver
// @namespace Violentmonkey Scripts
// @updateURL https://raw.githubusercontent.com/0x7C2f/UserScripts/main/popup-blocker-and-recaptcha-solver.user.js
// @downloadURL https://raw.githubusercontent.com/0x7C2f/UserScripts/main/popup-blocker-and-recaptcha-solver.user.js
// @include /^(https?:\/\/)(.+)?(shortzon|coinadfly|bclikeqt|fc-lc|claimclicks)(\.com)(\/.*)/
// @include /^(https?:\/\/)(.+)?(downfile|promo-visits)(\.site)(\/.*)/
// @include /^(https?:\/\/)(.+)?(bcvc|satoshi-win)(\.xyz)(\/.*)/
// @include /^(https?:\/\/)(1dogecoin|faucet)(\.work)(\/.*)/
// @match *://*.filesearch.link/*
// @match *://*.trangchu.news/*
// @match *://*.bitcoinly.in/*
// @match *://*.vshort.link/*
// @match *://*.linka.click/*
// @match *://*.linkres.in/*
// @match *://*.yocto.link/*
// @match *://*.cashurl.in/*
// @match *://*.linkad.in/*
// @match *://*.cuturl.in/*
// @match *://*.mitly.us/*
// @match *://*.aii.sh/*
// @match *://*.iir.ai/*
// @match *://*/recaptcha/*
// @version 4.4
// @author Blogger Pemula
// @run-at document-start
// @license GPL-3.0-or-later
// @grant GM_xmlhttpRequest
// @require https://code.jquery.com/jquery-3.6.0.min.js
// @require https://greasyfork.org/scripts/444872-7-recaptcha-solver-backup/code/7_Recaptcha%20Solver%20(BackUp).user.js#bypass=true
// @description This Script will Block All Popups Sites in the Lists , and Auto Solving Google reCAPTCHA
// ==/UserScript==
/*jslint evil: true */
var blockonclick = new Function("console.log('Blocked By BloggerPemula')");
function BlockPopup(e){return 1;}
parent.open=BlockPopup; this.open=BlockPopup; window.open=BlockPopup; onload=BlockPopup;
window.open = function(){ return;};
onload = function(){ return;};
this.open = function(){ return;};
parent.open = function(){ return;};
unsafeWindow.open = function(){};