NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name freshdesk // @namespace freshdesk // @include https://20speed.freshdesk.com/helpdesk/* // @version 1 // @grant none // @description RTL Conversation freshdesk function addCss(cssString) { var head = document.getElementsByTagName('head')[0]; var newCss = document.createElement('style'); newCss.type = "text/css"; newCss.innerHTML = cssString; head.appendChild(newCss); } addCss ( '.conversation { direction:rtl;text-align:right; }' ); addCss ( 'textarea { direction:rtl;text-align:right; }' ); // ==/UserScript==