Skip to content

Instantly share code, notes, and snippets.

View SteveHere's full-sized avatar
💭
Looking for work

Steve SteveHere

💭
Looking for work
View GitHub Profile
@SteveHere
SteveHere / tmScript.js
Last active February 14, 2023 00:12
Tampermonkey script for https://fragile.city
// ==UserScript==
// @name Sorted list + stats
// @version 0.3
// @description Sorts the cities + gives pollution & population stats
// @author SteveHere
// @match https://fragile.city/
// @icon https://www.google.com/s2/favicons?sz=64&domain=fragile.city
// @grant none
// ==/UserScript==
@SteveHere
SteveHere / log_x_axis.js
Created March 22, 2023 03:08
Tampermonkey script for Polygonscan's gas tracker graph
// ==UserScript==
// @name Logarithmic X-axis
// @version 0.1
// @description Logarithmic X-axis for Polygonscan's gas tracker graph
// @match https://polygonscan.com/gastracker*
// @author SteveHere
// @grant none
// ==/UserScript==
const lower_bound = 25, upper_bound = 1000;
@SteveHere
SteveHere / restore-blue-bird-logo.user.js
Last active September 15, 2023 07:03
Restore Original Blue Bird Twitter Logo - Tampermonkey script
// ==UserScript==
// @name Restore Original Blue Bird Twitter Logo
// @version 0.2
// @namespace https://gist.github.com/SteveHere/2e6cd82d833156fbd76089732f5429c3
// @description Restores the original blue bird Twitter logo (Adapted from https://raw.githubusercontent.com/cygaar/old-twitter)
// @author SteveHere
// @match https://twitter.com/*
// @icon none
// @grant none
// ==/UserScript==
@SteveHere
SteveHere / epitaph-hide-dead-civs.user.js
Last active February 2, 2024 18:04
Epitaph - Add 'Hide Civ' button - Tampermonkey script
// ==UserScript==
// @name Add 'Hide Civ' Button
// @version 0.1
// @namespace https://gist.github.com/SteveHere/1a19df5242802df3edcc7d34d5c62523
// @description Injects a 'Hide Civ' button for each dead civ
// @author SteveHere
// @match https://mkremins.github.io/epitaph/
// @icon none
// @grant none
// ==/UserScript==