Greasy Fork is available in English.

YourOnlineChoices_OFF

Turn off all ads on youronlinechoices -- it's not an userscript !!! Copy and paste a function below to the console.

作者
Damian Nietczak
今日安裝
0
安裝總數
5
評價
0 0 0
版本
0.1
建立日期
2019-12-30
更新日期
2019-12-30
授權條款
未知
腳本執行於

PL: kopiuj wklej do konsoli
EN: copy and paste this script into the console only after information retrieving disappears

copy only this part:


$(".partnerBox").each(function(index){
let statusBox= false;
try{
if($(this).find(".on").length || $(this).find(".nocookie").length){
statusBox = true;
}

if(statusBox){
$(this).find("#rdio_out").click();
}
}
catch{}
});