您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
tweetdeck
// ==UserScript== // @name tweetdeck arabic // @namespace http://userstyles.org // @description tweetdeck // @author molzit // @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 5 // ==/UserScript== (function() {var css = [ ".is-wide-columns .column {width: 750px !important;}", ".tweet-text {font-family: \"Droid Arabic Naskh\", sans-serif !important;", "font-size:19px !important; direction: rtl !Important; line-height: 1.7em !Important;}", ".mdl {width: 990px !important;}", ".mdl-column-rhs {width: 650px !important;}", ".tweet-timestamp {font-weight: bold !important;}", ".med-tweet {top: 550px !Important;}", ".med-fullpanel iframe {max-width: 900px !Important; max-height: 700px !Important;}", ".mdl.s-full {margin: 0 465px !Important;}", ".l-table {width: 900px !important;}", ".med-embeditem {top: 5px !Important; bottom: 5px !Important;}", ".headerInfo + .floatingEntryScroller {width: 880px !important;}", ".sliderContainer {min-width: 5% !important; width: 880px !important;}", ".mdl.s-full {max-width: 900px !important;}", ".med-origlink, .med-tweet, .med-flaglink {display: none !important;}", ".js-media-native-video {width: 900px !important; height: 670px !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); } } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址