NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name RPS Content restore // @namespace RPS // @version 0.1 // @author You // @include *www.rockpapershotgun.com* // @license MIT // @updateURL https://openuserjs.org/meta/Ahab/RPS_Content_restore.meta.js // ==/UserScript== $.each($("span[class^=onetrust-placeholder]"), function(){ var a = this.parentElement.children[0].dataset.src var h = this.parentElement.children[0].height var w = this.parentElement.children[0].width $(this).replaceWith($('<iframe height="'+h+'" width="'+w+'" src="'+a+'" allowfullscreen=""></iframe>')) })