Skip to content

Instantly share code, notes, and snippets.

@chrishazfun
Forked from egecelikci/mastodon-bird-ui.user.js
Last active July 11, 2023 16:56
Show Gist options
  • Save chrishazfun/2c477ce53f4668bf4db73b8cb70ce9dd to your computer and use it in GitHub Desktop.
Save chrishazfun/2c477ce53f4668bf4db73b8cb70ce9dd to your computer and use it in GitHub Desktop.
// ==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