Skip to content

Instantly share code, notes, and snippets.

@allquixotic
Created August 25, 2015 16:52
Show Gist options
  • Save allquixotic/8c0b190ded0a67b23091 to your computer and use it in GitHub Desktop.
Save allquixotic/8c0b190ded0a67b23091 to your computer and use it in GitHub Desktop.
Remove sparkles (better version)
// ==UserScript==
// @name Remove Sparklies
// @namespace http://www.pf-enclave.org
// @version 0.2
// @description It does something useful
// @author Sean McNamara / Bob Rao
// @match http://www.pf-enclave.org/*
// @grant none
// ==/UserScript==
[].forEach.call(document.styleSheets, function(sheet) {
try {
if (!sheet.cssRules) {
return;
}
} catch (e) {
return;
}
[].forEach.call(sheet.cssRules, function(rule) {
if (rule.style && rule.style.backgroundImage && rule.style.backgroundImage.match(/sparkle/)) {
rule.style.backgroundImage = 'none';
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment