NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Bigger iFrames
// @version 0.1
// @author Fury Zenblade#1337
// @match https://vsimcard.com/trashmails.php?search=*
// @icon https://www.google.com/s2/favicons?domain=vsimcard.com
// @grant GM_addStyle
// @license MIT
// @updateURL https://openuserjs.org/meta/FuryZen/Bigger_iFrames.meta.js
// ==/UserScript==
(function() {
'use strict';
//GM_addStyle(".div#body { calc(90%) !important }");
var i, frames;
frames = document.getElementsByTagName("iframe");
for (i = 0; i < frames.length; ++i)
{
// The iFrame
frames[i].style.height = "600";
}
})();