Skip to content

Instantly share code, notes, and snippets.

@ljepson
Created July 6, 2012 05:48
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 ljepson/3058300 to your computer and use it in GitHub Desktop.
Save ljepson/3058300 to your computer and use it in GitHub Desktop.
Automate clicking "Select All" checkbox in Google Voice
setInterval(function() { if(!$jq('.jfk-checkbox-checkmark').parent().hasClass('jfk-checkbox-checked') && $jq('#gc-message-list .gc-message').html().length > 1) { $jq('.jfk-checkbox-checkmark').click(); } },1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment