// ==UserScript== // @name Doulou Dalu - bring in google doc properly // @namespace http://tampermonkey.net/ // @version 0.2 // @description Inserts article inline instead of google doc // @author You // @match bluesilvertranslations.wordpress.com/* // @grant none // @include-jquery // @downloadURL none // ==/UserScript== (function() { 'use strict'; $('.entry-content').prepend('
'); var frame = $('.entry-content > iframe:first'); var frameUrl = frame[0].src; //console.log(frameUrl); $.get(frameUrl, function(data) { $('#iframe-content').html(data); //console.log("data"); //console.log(data); }); $('.entry-content > iframe:first').delay(500).remove(); })();