Title: Pastebin Greentext script Author: Anonymous Pastebin link: http://pastebin.com/5abpYz3c First Edit: Saturday 7th of January 2017 01:35:08 AM CDT Last Edit: Saturday 7th of January 2017 01:35:08 AM CDT // ==UserScript== // @name        Pastebin implications // @namespace   derpderp // @description > Implying I will write a description // @version     1 // @grant       none // @require     http://code.jquery.com/jquery-2.1.1.min.js // @include     http://pastebin.com/* // ==/UserScript==   $("").appendTo("head");   $(document).ready(function() {     $('li').each(function() {        if ($(this).text()[0] == '>') {            $('div', this).addClass('implying');        }     }); });