Last active
March 4, 2024 21:45
-
-
Save egecelikci/bcd4d543564cba8ebe6536f23886fcd9 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 | |
// @description A UserScript that applies the Mastodon Bird UI style to ieji.de | |
// @version 5 | |
// @match https://ieji.de/* | |
// @icon https://github.com/mastodon/mastodon/raw/main/public/favicon.ico | |
// @grant GM_addStyle | |
// @grant GM_getResourceText | |
// @homepage https://gist.github.com/egecelikci/bcd4d543564cba8ebe6536f23886fcd9 | |
// @downloadURL https://gist.github.com/egecelikci/bcd4d543564cba8ebe6536f23886fcd9/raw/mastodon-bird-ui.user.js | |
// @updateURL https://gist.github.com/egecelikci/bcd4d543564cba8ebe6536f23886fcd9/raw/mastodon-bird-ui.user.js | |
// @resource layout-single-column https://cdn.jsdelivr.net/gh/ronilaukkarinen/mastodon-bird-ui@main/layout-single-column.min.css | |
// @resource layout-multiple-columns https://cdn.jsdelivr.net/gh/ronilaukkarinen/mastodon-bird-ui@main/layout-multiple-columns.min.css | |
// ==/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