Red Blue

Red to Blue

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