![]() |
|
[Tamper Monkey] Unofficial Sinister.ly Script. - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: General (https://sinister.ly/Forum-General) +--- Forum: The Lounge (https://sinister.ly/Forum-The-Lounge) +--- Thread: [Tamper Monkey] Unofficial Sinister.ly Script. (/Thread-Tamper-Monkey-Unofficial-Sinister-ly-Script) |
[Tamper Monkey] Unofficial Sinister.ly Script. - FluxCoder - 06-05-2016 Hi guys, So some of you might have seen me mention in the theme suggestions thread that I found it hard to read the forums text as it's grey. I'm not saying that's bad, but I personally don't like it. So, I made a Tamper Monkey Script, this works for both Firefox & Chrome! This isn't released yet as I yet to complete it, but here the very first version: Code: // ==UserScript==
// @name Sinister.ly Unofficial Script
// @namespace http://tampermonkey.net/
// @version 0.0.1
// @description The unofficial Sinister.ly Script for it's members!
// @author Fluxcoder
// @match https://sinister.ly/*
// @grant none
// ==/UserScript==
//This Script was made by FluxCoder from Sinister.ly Forums, please do not edit, publish or change any of the script! Thank you!
//FluxCoder: https://sinister.ly/User-FluxCoder
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('body { color: white; }');The Download Link will be coming soon! -- Peace RE: [Tamper Monkey] Unofficial Sinister.ly Script. - mothered - 06-06-2016 I prefer FF or Chrome (personal choice), so It's good to read you have support. I look forward to It's release. RE: [Tamper Monkey] Unofficial Sinister.ly Script. - TheEvilSocks - 06-10-2016 I'm kinda curious to see what this will become. Please continue! RE: [Tamper Monkey] Unofficial Sinister.ly Script. - Equinox - 06-10-2016 Or you could've just done a stylish stylesheet. No need to add extra javascript where it's unnecessary. RE: [Tamper Monkey] Unofficial Sinister.ly Script. - Pirate - 06-17-2016 I find the forums text kind of hard to read as well. Thank you for this script. |