Skip to content

Instantly share code, notes, and snippets.

@clarkkozak
Last active February 27, 2018 06:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clarkkozak/c11ce8444f0a502c7976b47dc7a2d595 to your computer and use it in GitHub Desktop.
Save clarkkozak/c11ce8444f0a502c7976b47dc7a2d595 to your computer and use it in GitHub Desktop.
Turning down the Steem
// ==UserScript==
// @name TooSteemy
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author Juxley
// @match https://steemit.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// No need to compare yourself with other!
const wallet = document.querySelector(".UserWallet");
if(window.location.pathname.includes('transfers')) {
if(window.location.pathname !== '/@juxley/transfers') {
wallet.style.display = "none" ;
}
}
//Make that dark allllwaysss
const theme = document.getElementById("content").firstChild;
theme.classList.remove("theme-light");
theme.classList.add("theme-dark");
// look for contact you like!
const integers = Array.from(document.querySelectorAll(".integer"));
const decimals = Array.from(document.querySelectorAll(".decimal"));
for (let i = 0; i < integers.length; i++) {
integers[i].innerHTML = "¯\\_(ツ)";
}
for (let i = 0; i < decimals.length; i++) {
decimals[i].innerHTML = "_/¯";
}
//Onto making more stuff...
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment