NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name jira-rtl // @namespace jira // description make Jira go from right to left // @include http://jira.hasadna.org.il/* // @version 2 // @resource rtl http://yeda.us/jira-rtl.css // @grant GM_addStyle // @grant GM_getResourceText // ==/UserScript== var cssTxt = GM_getResourceText("rtl"); GM_addStyle(cssTxt);