您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds a reload button in the top right corner of the iframe for Google HITs. Clicking the button reloads the iframe only.
当前为
// ==UserScript== // @name mmmturkeybacon Google IFrame Reload Button // @version 1.00 // @description Adds a reload button in the top right corner of the iframe for Google HITs. Clicking the button reloads the iframe only. // @author mmmturkeybacon // @namespace http://userscripts.org/users/523367 // @match https://www.google.com/evaluation/endor/mturk?* // @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js // @grant GM_log // ==/UserScript== $(document).ready(function() { var button_holder = document.createElement("DIV"); button_holder.style.cssText = "position: fixed; top: 0px; right: 0px; z-index: 20;"; button_holder.innerHTML = '<input type="button" onclick="window.location.reload(true)" value="Reload" />'; document.body.insertBefore(button_holder, document.body.firstChild); });