Hacker News new | ask | show | jobs
by dirtyid 2249 days ago
Highlight new comment on HN

https://greasyfork.org/en/scripts/18066-hn-comment-trees

For reddit:

https://github.com/Farow/userscripts/blob/master/reddit-high...

Gmail android creator had a unified one for HN+reddit that syncs across sessions, but it lacks features and haven't been updates in years:

https://chrome.google.com/webstore/detail/new-comments/jldpf...

My most used bookmarklets increments playback speed for html5 videos, i have one that +0.5x and one that -0.5x

javascript:(function() {var media = document.querySelectorAll('video,audio'); var rate = media[0].playbackRate+0.5; Array.prototype.forEach.call(media, function(player) {if (rate == null) {return;} else if (rate != 0) { player.playbackRate = rate; } else {player.playbackRate = 1;}}); })();

Also skip forward / back 30s

javascript:(function() {var media = document.querySelectorAll('video,audio')[0];media.currentTime = media.currentTime+29;})();

Forgot:

https://timelens.io/youtube/

Great great for skipping past ads or blocks of content based on visual timeline. Wish this was in more in native media players.

1 comments

For HN I prefer this one: https://github.com/andreicristianpetcu/HNMarkAllRead/release...

(chrome one is in the store)

It marks comments or posts as "read" (or "seen") for a whole page and than hides them. And you can tell it not to hide posts where you "subscribed" to the comments.

I can never go back, so tired of skimming over the same top posts all day again and again.

I think it also does tree comments.