-
-
Save chrislowles/2c477ce53f4668bf4db73b8cb70ce9dd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Mastodon Bird UI | |
// @match https://mstdn.social/* | |
// @grant GM_addStyle | |
// @grant GM_getResourceText | |
// @version 2 | |
// @description A UserScript that applies the Mastodon Bird UI style to mstdn.social | |
// @resource layout-single-column https://raw.githubusercontent.com/ronilaukkarinen/mastodon-bird-ui/master/layout-single-column.css | |
// @resource layout-multiple-columns https://raw.githubusercontent.com/ronilaukkarinen/mastodon-bird-ui/master/layout-multiple-columns.css | |
// @downloadURL https://gist.github.com/chrishazfun/2c477ce53f4668bf4db73b8cb70ce9dd/raw/mastodon-bird-ui.user.js | |
// @updateURL https://gist.github.com/chrishazfun/2c477ce53f4668bf4db73b8cb70ce9dd/raw/mastodon-bird-ui.user.js | |
// ==/UserScript== | |
GM_addStyle(GM_getResourceText('layout-single-column')); | |
GM_addStyle(GM_getResourceText('layout-multiple-columns')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment