Skip to content

Instantly share code, notes, and snippets.

@vihanb
Last active February 27, 2016 17:45
Show Gist options
  • Save vihanb/cde2709356732f845503 to your computer and use it in GitHub Desktop.
Save vihanb/cde2709356732f845503 to your computer and use it in GitHub Desktop.
stahp with username changes
// ==UserScript==
// @name stahp with username changes
// @namespace eoisdhfqlkjasdf
// @version 1.0
// @description self explanatory
// @author You
// @match *://*.stackexchange.com/*
// @grant none
// ==/UserScript==
[
["Helka Homba", "Calvin's Hobbies"],
["HelkaHomba", "CalvinsHobbies"],
["Helka", "Calvin"],
["fItaJ.png", "qkXJy.png"],
["Aqua Tart", "quartata"],
["Don Musolini", "Luis Mendo"],
["DonMusolini", "LuisMendo"]
["AandN", "Adnan"],
["A and N", "Adnan"],
["lirtosiast", "Thomas Kwa"],
["I Go Best", "Geobits"],
["IGoBest", "Geobits"],
["Downgoat", "Vihan"],
["Code Review", "the evil code reviewers"]
].forEach(function(name) {
try {
document.body.innerHTML = document.body.innerHTML.replace(RegExp(name[0], 'gi'), name[1]);
} catch(e) { }
});
@Geobits
Copy link

Geobits commented Feb 27, 2016

Why does this exist? Also, you're missing ["Downgoat", "Vihan"].

@vihanb
Copy link
Author

vihanb commented Feb 27, 2016

Why does what exist?

@schas002
Copy link

Also, it's not Don Musolini. It's Don Muesli.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment