Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as JavaScript by Perberos ( 6 years ago )
// ==UserScript==
// @name Quita Twitch de la pagina de Boombang
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Script para Pantruka
// @author Perberos
// @match https://www.boombang.nl/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var iframe = document.querySelectorAll("iframe");
for (var i = iframe.length - 1; i >= 0; i--)
{
var src = iframe[i].getAttribute("src");
if (src && src.indexOf("twitch") != -1)
{
iframe[i].parentNode.removeChild(iframe[i]);
}
}
// Your code here...
})();
Revise this Paste