Hide Instuctions

Hides instructions on HITs

当前为 2015-07-15 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Hide Instuctions
  3. // @namespace https://gf.qytechs.cn/users/11580
  4. // @version 1.0
  5. // @description Hides instructions on HITs
  6. // @author Kadauchi
  7. // @include https://www.mturkcontent.com/dynamic/*
  8. // @include https://www.pickfu.com/*
  9. // @include https://no1433.crowdcomputingsystems.com/mturk-web/public/*
  10. // @grant none
  11. // @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
  12. // ==/UserScript==
  13.  
  14. //General MTurk HIT Layout
  15. //Instructions toggle
  16. $(".panel-body").hide();
  17. $(".panel-heading").click(function() {
  18. $(".panel-body").toggle();
  19. });
  20.  
  21. //Venue Quality
  22. if ($('td:contains("Venue Quality")').length > 0) {
  23. $(".overview-wrapper").hide();
  24. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址