zapIframesProp

zap all iframes Properties

You will need to install an extension such as Tampermonkey, Greasemonkey 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 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.

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

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

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);