Created
May 16, 2021 15:49
-
-
Save lesterlo/432a3df4276cff23d74aea49c1b958a1 to your computer and use it in GitHub Desktop.
Remove linux.vbird.org background image for better dark theme quality using dark reader
This file contains hidden or 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 Remove vbird background image | |
// @namespace http://tampermonkey.net/ | |
// @version 0.0.1 | |
// @description Remove vbird background image for better dark theme quality using dark reader | |
// @author Lester Lo | |
// @match http://linux.vbird.org/* | |
// @require http://code.jquery.com/jquery-3.4.1.min.js | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
var $ = window.jQuery; | |
$('body').css('background-image', ''); | |
$('td').css('background-image', ''); | |
$('td').css('background-image', ''); | |
$('table').css('background-image', ''); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment