Red Blue

Red to Blue

  1. // ==UserScript==
  2. // @name Red Blue
  3. // @version 0.1
  4. // @description Red to Blue
  5. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js
  6. // @include http://www.mturkgrind.com/*
  7. // @copyright 2013+, You
  8. // @namespace https://greasyfork.org/users/2698
  9. // ==/UserScript==
  10. $("[color='blue'], [color='#0000FF']").each(function(){
  11. $(this).attr("color","red");
  12. })