Last active
November 9, 2016 04:29
-
-
Save juliepagano/63632aaf842ee2a0a7a10259e342dc67 to your computer and use it in GitHub Desktop.
tampermonkey script for disabling the bullshit NYT jitter.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Fuck the New York Times | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match http://www.nytimes.com/elections/results/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
// NOT ESPECIALLY TESTED. USE AT YOUR OWN PERIL TO DISABLE THE JITTER. | |
window.addEventListener('load', function() { | |
requirejs._defined['forecast/jitter'].get = function() { | |
return 0; | |
}; | |
console.log('fuck the new york times for this irresponsible UX jitter bullshit.'); | |
}, false); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment