Skip to content

Instantly share code, notes, and snippets.

@artttj
Last active August 14, 2016 07:39
Show Gist options
  • Save artttj/c8554f542135d8e0c42a690be04ed389 to your computer and use it in GitHub Desktop.
Save artttj/c8554f542135d8e0c42a690be04ed389 to your computer and use it in GitHub Desktop.
Tampermonkey script for youtube, that appends current time to the URL
'use strict';
var checkCurrentTime = setInterval(function(){
var $player = document.querySelector('#movie_player');
if($player && $player.getCurrentTime()) {
document.location.hash = 'start=' + $player.getCurrentTime();
}// + ';end=20:22;cycles=-1;autoreplay=false
}, 5000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment