zapIframesProp

zap all iframes Properties

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name          zapIframesProp
// @description   zap all iframes Properties
// @include *
// @include https://*
// @include http://*
// @namespace     https://greatest.deepsurf.us/en/users/3561-lucianolll
// @namespace     https://openuserjs.org/users/lucianolll
// @namespace     http://userscripts-mirror.org/users/46776
// @version    8
// @grant     none
// @author lucianolll
// ==/UserScript==
var zapifrprp=function(){
	var doc=document,ifra=doc.getElementsByTagName('iframe'),ln=ifra.length;
  if(ln!==0){
  var frm=function(f){var m,mds=function(d){m=f[d];return [m,m.parentNode];};return function(d){return mds(d);};}(ifra);
    for(var i=ln,j=0,tm=[];i--;j++){tm[j]=frm(i);}
	tm.forEach(function(v){v[1].removeChild(v[0]);});
  }
};
    addEventListener('load',zapifrprp,false);