UserScripts/Mastodon/remove custom css.js

17 lines
351 B
JavaScript

// ==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()
}
})()