irimilis / Rotate text from Right to Left

// ==UserScript==
// @name         Rotate text from Right to Left
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Rotate text from Right to Left
// @author       You
// @match        *://*/*
// @exclude      http://www.accuweather.com/*
// @exclude      http://www.kalo*/*
// @exclude      http://www.szatmar.ro/Szatmarnemeti_es_Szatmar_megye_idojarasa/hirek/20323
// @grant        none
// ==/UserScript==

function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}

addGlobalStyle('* { unicode-bidi:bidi-override; direction:rtl ! important; }');