tweetdeck
// ==UserScript== // @name tweetdeck arabic // @namespace http://userstyles.org // @description tweetdeck // @author adil // @homepage https://userstyles.org/styles/178483 // @include http://tweetdeck.twitter.com/* // @include https://tweetdeck.twitter.com/* // @include http://*.tweetdeck.twitter.com/* // @include https://*.tweetdeck.twitter.com/* // @run-at document-start // @version 6 // ==/UserScript== (function() {var css = [ "section.js-column.column.will-animate {width: 760px !important;}", ".tweet-text {font-family: Droid Arabic Naskh, sans-serif !important; font-size:23px !important; direction: rtl !Important; line-height: 1.7em !Important;}", ".mdl {width: 1440px !important;}", ".mdl-column-rhs {width: 650px !important;}", ".tweet-timestamp {font-weight: bold !important;}", ".med-tweet {top: 550px !Important;}", ".med-fullpanel iframe {max-width: 1090px !Important; max-height: 700px !Important;}", ".mdl.s-full {margin: 0 150px !Important; max-width: 1450px !important;}", ".l-table {width: 1430px !important;}", ".js-embeditem.med-embeditem.is-loaded { width: 1430px; }", ".med-embeditem {top: 5px !Important; bottom: 5px !Important;}", ".headerInfo + .floatingEntryScroller {width: 880px !important;}", ".sliderContainer {min-width: 5% !important; width: 880px !important;}", ".med-origlink, .med-tweet, .med-flaglink {display: none !important;}", ".js-media-native-video {width: 1420px !important; height: 780px !important;}" ].join("\n"); if (typeof GM_addStyle != "undefined") { GM_addStyle(css); } else if (typeof PRO_addStyle != "undefined") { PRO_addStyle(css); } else if (typeof addStyle != "undefined") { addStyle(css); } else { var node = document.createElement("style"); node.type = "text/css"; node.appendChild(document.createTextNode(css)); var heads = document.getElementsByTagName("head"); if (heads.length > 0) { heads[0].appendChild(node); } else { // no head yet, stick it whereever document.documentElement.appendChild(node); } } })();