您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Twitter voller Bildschirm - 4k Untersütztung
"use strict"; // ==UserScript== // @name Twitter // @description Twitter voller Bildschirm - 4k Untersütztung // @version 1.0.1 // @author Nexarius // @include *twitter.com* // @require https://code.jquery.com/jquery-3.2.1.min.js // @grant none // @namespace https://greasyfork.dpdns.org/users/212703 // ==/UserScript== var styleSheet = ` .AppContainer { max-width:90%; } body:not(.ProfilePage) #page-container { width:90%; } .ProfileCanopy-header { max-width:100vw; } .dashboard { width:25%; } #permalink-overlay-dialog, #page-container > #timeline { width:calc(50% - 20px); } .permalink-container { width:100%; } .PermalinkOverlay-modal { left:36%; } .AdaptiveMedia { max-width:100%; max-height:25vw !important; } .AdaptiveMedia-triplePhoto { width:100%; height:25vw; } .js-macaw-cards-iframe-container { min-height:unset !important; } `; (function () { var s = document.createElement('style'); s.type = "text/css"; s.innerHTML = styleSheet; (document.head || document.documentElement).appendChild(s); })();