您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds a link to your HITs queue onto your dashboard (both the new and old worker sites) on MTurk.
当前为
// ==UserScript== // @name HITs in Queue Link on MTurk Dashboard // @namespace https://greasyfork.org/en/users/150063-trickydude24 // @description Adds a link to your HITs queue onto your dashboard (both the new and old worker sites) on MTurk. // @author Trickydude24 // @version 1.2 // @match https://worker.mturk.com/dashboard* // @match https://www.mturk.com/mturk/dashboard* // @grant none // ==/UserScript== if (/^https?:\/\/(www\.)?worker\.mturk\.com\/dashboard.*/.test(location.href)) { $(".nav.navbar-nav.hidden-xs-down").append('<li class="nav-item"><a class="nav-link" href="https://worker.mturk.com/tasks">HITs Queue</a></li>'); } else if (/^https?:\/\/(www\.)?mturk\.com\/mturk\/dashboard.*/.test(location.href)) { var theDiv = document.getElementById('subtabs'); theDiv.innerHTML += '<span class="almostblack_text"> | </span><a href="/mturk/myhits" class="subnavclass">HITs Queue</a>'; }