Skip to content

Instantly share code, notes, and snippets.

@prendradjaja
Last active June 9, 2017 17:26
Show Gist options
  • Select an option

  • Save prendradjaja/a24721f58452673383619ac517f005a7 to your computer and use it in GitHub Desktop.

Select an option

Save prendradjaja/a24721f58452673383619ac517f005a7 to your computer and use it in GitHub Desktop.
(in progress) "Sort bookmarks" bookmarklet for Medium
// https://stackoverflow.com/questions/11778477/variable-in-chrome
// https://developer.mozilla.org/en-US/docs/Web/API/Element/querySelector
var homeStream = $('.js-homeStream');
var stories = homeStream.children;
function getReadingTime (story) {
return +$('.readingTime', story).title.split(' ')[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment