Ahab / RPS Content restore

// ==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>'))
})