Skip to content

Instantly share code, notes, and snippets.

@rbonick
Created March 21, 2018 05:00
Show Gist options
  • Save rbonick/03e99765f44db55b72a2cfd39648abcc to your computer and use it in GitHub Desktop.
Save rbonick/03e99765f44db55b72a2cfd39648abcc to your computer and use it in GitHub Desktop.
Count total Instapaper time to read (+ article count) - set as URL for a bookmark and click to use
javascript:var time = 0; var count = 0; $('.meta_read_time.meta_item').each(function(){ time += parseInt(/\d+/.exec($(this).text())["0"]); count++; }); alert(time + " minutes to read " + count + " articles.");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment