NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name JIRA - slightly darker mode // @author matushl // @version 0.1 // @include https://*.atlassian.net/* // @include https://jira.*.com/* // @require http://code.jquery.com/jquery-3.4.1.min.js // @license MIT // ==/UserScript== function setDarkerBackground(){ $('#jira-frontend').css('background', 'darkgrey'); $('#jira-issue-header').css('background', 'darkgrey'); $('#jira-issue-header-actions').css('background', 'darkgrey'); $('.sc-dTLGrV').css('background', 'darkgrey'); // arround comment input $('.sc-kMwJjC').css('background', 'darkgrey'); // input unopened $('.sc-jooTLj').css('background', 'darkgrey'); // opened input } $(document).ready(function() { setDarkerBackground(); });