// ==UserScript==
// @name Add Drive to YouTube Header
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Adds Drive link to YouTube header menu
// @author Your Name
// @match https://vanced-youtube.neocities.org/2011/
// @grant none
// @downloadURL none
// ==/UserScript==
(function() {
'use strict';
// Create the new
element
var driveNode = document.createElement('li');
driveNode.className = 'gbt';
driveNode.innerHTML = 'Drive';
// Find the Gmail element
var gmailNode = document.querySelector('li.gbt a.gbzt#gb_23[href="http://mail.google.com/mail/?hl=en&tab=wm"]');
// Insert the new node after the Gmail node
if (gmailNode) {
var parent = gmailNode.parentNode.parentNode;
parent.insertBefore(driveNode, parent.children[parent.children.length - 1].nextSibling);
}
})();