diff --git a/Mastodon/remove custom css.js b/Mastodon/remove custom css.js new file mode 100644 index 0000000..f42603f --- /dev/null +++ b/Mastodon/remove custom css.js @@ -0,0 +1,16 @@ +// ==UserScript== +// @name Remove Travelpandas custom CSS +// @version 1.0.0 +// @match https://travelpandas.fr/* +// @run-at document-end +// ==/UserScript== + +(function () { + + if (document.querySelector('#mastodon')) { + + document.querySelector('link[href="https://travelpandas.fr/custom.css"]')?.remove() + + } + +})()