NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name thetruthlies customizer
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Adds extra CSS to thetruthlies site
// @author mcawesomept
// @match https://thetruthlies.com/*
// @grant none
// @license MIT
// @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// ==/UserScript==
(function() {
'use strict';
var styles = `
/*backgrounds*/
html
{
/*background:none !important;*/
}
body[style="background-color:black"]
{
background-color:transparent !important;
}
#stats_container,
.bg-black
{
background:none !important;
}
a,button
{
outline: 5px solid yellow;
}
.bottom-0
{
/*display:none;*/
}
`;
console.log("custom user script loaded");
var styleSheet = document.createElement("style")
styleSheet.type = "text/css"
styleSheet.innerText = styles
document.head.appendChild(styleSheet)
//$("input[disabled]").removeAttr("disabled")
//$("button[disabled]").removeAttr("disabled")
})();