mastodon css

a

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name        mastodon css
// @description a
// @match       https://mastodon.social/settings*
// @run-at      document-start
// @version 0.0.1.20250705051146
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function () {
    const css = `
.sidebar-wrapper, .sidebar-wrapper * {
    width: unset !important;
}
  `;
    const style = document.createElement('style');
    style.textContent = css;
    document.head.appendChild(style);
})();