Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Mumfrey/55cdb94ab8e24664e0d3 to your computer and use it in GitHub Desktop.
Save Mumfrey/55cdb94ab8e24664e0d3 to your computer and use it in GitHub Desktop.
FuckYouAnotherBadlyPhotoshoppedPhotoofMichaelCeraEveryday.js
// ==UserScript==
// @name FuckYouAnotherBadlyPhotoshoppedPhotoofMichaelCeraEveryday
// @namespace eq2.co.uk
// @description Fuck You AnotherBadlyPhotoshoppedPhotoofMichaelCeraEveryday
// @include http://imgur.com/gallery/*
// @version 1
// @grant none
// ==/UserScript==
document.addEventListener("DOMNodeInserted", function check(evt) {
var postAcc = $(".post-account");
if (postAcc != null && postAcc.length > 0) {
$('body')[0].style.backgroundColor = /AnotherBadlyPhotoshoppedPhotoofMichaelCeraEveryday$/.test(postAcc[0].href) ? "#660000" : "#121211";
}
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment