Created
November 20, 2014 22:14
-
-
Save w-barath/fb74728bf3fbe46b34bd to your computer and use it in GitHub Desktop.
greasemonkey fps jQuery save laptop battery
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 1fps jQuery | |
// @namespace * | |
// @description jQuery animations 1fps or off | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
if ($ && $.fx && $.fx.interval) { | |
$.fx.interval=1000; // try to slow it down | |
$.fx.off=1; // turn it right off | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment