DCF Filing Embed

enter something useful

目前为 2015-10-15 提交的版本。查看 最新版本

// ==UserScript==
// @name         DCF Filing Embed
// @namespace https://greasyfork.org/users/710
// @version      0.1
// @description  enter something useful
// @author       Tjololo
// @match        https://www.mturkcontent.com/dynamic*
// @require     http://code.jquery.com/jquery-latest.min.js
// @grant        GM_log
// ==/UserScript==

var a = $('table.task_parameters a:first').attr("href");

var iframeString ='<iframe width="700" height="600" frameborder="1" scrolling="yes" marginheight="0" marginwidth="0" src="'+ a +'"></iframe>';

$('table.task_parameters').after($('<div></div>').html(iframeString));