🏠 Home 

Unboxholics Sponsored post Remover

Removes Unboxholics Sponsored posts


Install this script?
// ==UserScript==
// @name         Unboxholics Sponsored post Remover
// @author        cckats
// @namespace https://greasyfork.org/users/661487
// @version      1.0
// @description  Removes Unboxholics Sponsored posts
// @match        https://unboxholics.com/
// @grant        none
// ==/UserScript==
var test=0;
(function() {
'use strict';
const regex = RegExp('SPONSORED');
const interval = setInterval(function() {
for(var k=0; k< document.getElementsByClassName("col-md-6").length ;k++){
var spon = document.getElementsByClassName("col-md-6")[k].innerText;
if(regex.test(spon)){
document.getElementsByClassName("col-md-6")[k].remove();
return;
}
}
test++;
if(test >= 3){
clearInterval(interval);
}
},500)
})();