Title: Pastebin Greentext Author: Johnnyx8 Pastebin link: http://pastebin.com/jMZ2GcGK First Edit: Monday 19th of May 2014 07:52:35 PM CDT Last Edit: Monday 19th of May 2014 07:52:35 PM CDT // ==UserScript== // @name        Pastebin Greentext // @namespace   PastebinGreentext // @include     http://pastebin.com/* // @require     http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js // @version     1 // @grant       none // ==/UserScript==   $(document).ready(function(){     $(".de1, .de2").each(function()     {         var text = $(this).text();         var regex = /^>/;         if(regex.test(text))         {             $(this).css('color', '#789922');         }     }); });           >testing here >implying this works