2/8/18

CHROME // Vimeo - acces to videos from profile with a bookmark

Now we can't directly acces to all videos of a profile in Vimeo like we could in the past.
We can acces it adding "/videos" to the url to get back this page. As this is a bit tedious to do it manually, we can create a bookmark on the chrome bar and add this function instead of the url :

javascript:(function(){location.href=location.href+("/videos");})();
or
javascript:(function(){location.href+="/videos";})();