Skip to content

Instantly share code, notes, and snippets.

@juliepagano
Last active November 9, 2016 04:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juliepagano/63632aaf842ee2a0a7a10259e342dc67 to your computer and use it in GitHub Desktop.
Save juliepagano/63632aaf842ee2a0a7a10259e342dc67 to your computer and use it in GitHub Desktop.
tampermonkey script for disabling the bullshit NYT jitter.
// ==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