您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Sometimes requesters will leave off the protocol at the
当前为
// ==UserScript== // @name mmmturkeybacon Bad Link Fixer // @author mmmturkeybacon // @description Sometimes requesters will leave off the protocol at the // beginning of a URL; for example, www.example.com instead of // http://www.example.com. This results in bad links that // look like https://www.mturkcontent.com/dynamic/www.example.com. // This script prepends "http://" to links that don't start with // "http" or "/". // I'm not sure if it makes sense for any HIT to use relative links. // It's possible this script might break valid relative links. It's // best to leave it disabled until you need it. // @namespace http://userscripts.org/users/523367 // @match https://s3.amazonaws.com/mturk_bulk/hits* // @match https://www.mturkcontent.com/dynamic/hit?* // @require http://code.jquery.com/jquery-latest.min.js // @version 1.01 // @grant GM_log // ==/UserScript== var $bad_link = $('a:not([href^="http"], [href^="/"])'); $bad_link.each(function() { $(this).attr('href', 'http://'+$(this).attr('href')); });