您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
resizeable columns in mastodon
当前为
// ==UserScript== // @name resize-o-don // @license DWTFYW // @namespace http://pureandapplied.com.au/resizodon // @version 0.1 // @description resizeable columns in mastodon // @author You // @match https://*.social/* // @icon https://www.google.com/s2/favicons?sz=64&domain=aus.social // @grant none // ==/UserScript== (function() { let cols = document.getElementsByClassName("column"); for(let i=0; i< cols.length; i++){ cols[i].style.resize = "horizontal"; cols[i].style.flex = "1 1 auto"; } let drw = document.getElementsByClassName("drawer"); for(let i=0; i< cols.length; i++){ drw[i].style.resize = "horizontal"; drw[i].style.flex = "1 1 auto"; } })();