NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Trello highlight lists // @description Highlight certain columns in Trello. // @include https://trello.com/b/6Eu5rY9x/todo-s-dee // @require https://code.jquery.com/jquery-1.11.0.min.js // @version 1.0 // ==/UserScript== $(document).ready(function() { var black = '#393939', brown = '#a39386', green = '#a8C0aa', red = '#f00', white = '#fff'; $("h2:contains('Doing')").parents('.list').css('background', black); $("h2:contains('Doing') + textarea").css('color', red); });