Changes the plain text in "Find the News section and facebook/twitter page for these websites" to a real link.
当前为
// ==UserScript==
// @name Chris Wong HIT Helper
// @namespace http://ericfraze.com
// @version 0.1
// @description Changes the plain text in "Find the News section and facebook/twitter page for these websites" to a real link.
// @include https://s3.amazonaws.com/mturk_bulk/hits/*
// @include https://www.mturkcontent.com/dynamic/hit*
// @copyright 2014+, Eric Fraze
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js
// ==/UserScript==
$(document).ready(function() {
$('#DataCollection > div > table > tbody > tr:nth-child(2) > td:nth-child(2)').filter(function(index)
{
var url = $(this).text();
url = url.replace("http://", "");
$(this).html("<a href='http://" + url + "'>" + $(this).text() + "</a>");
return false;
});
});