Fresh content for youtube

Simple script to automatically click the New to you button on YT.

// ==UserScript==
// @name        Fresh content for youtube
// @namespace   Violentmonkey Scripts
// @match       https://www.youtube.com/
// @grant       none
// @version     1.0
// @author      Omar alharbi - @loboly_19
// @description Simple script to automatically click the New to you button on YT.
// @license MIT 
// ==/UserScript==
    window.onload = function(){
    var FreshView = document.querySelector('[title="New to you"]');
    FreshView.click();};