Skip to content

Instantly share code, notes, and snippets.

@w-barath
Created November 20, 2014 22:14
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 w-barath/fb74728bf3fbe46b34bd to your computer and use it in GitHub Desktop.
Save w-barath/fb74728bf3fbe46b34bd to your computer and use it in GitHub Desktop.
greasemonkey fps jQuery save laptop battery
// ==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