Add the link of "Advanced search" to the GitHub header

try to take over the world!

Από την 12/10/2019. Δείτε την τελευταία έκδοση.

// ==UserScript==
// @name         Add the link of "Advanced search" to the GitHub header
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       9sako6
// @match        https://github.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    let navElem = document.querySelector("body > div.position-relative.js-header-wrapper > header > div.Header-item.Header-item--full > nav");
    console.log(navElem);
    navElem.insertAdjacentHTML('beforeend', `<a class="js-selected-navigation-item Header-link  mr-0 mr-lg-3 py-2 py-lg-0 border-top border-lg-top-0 border-white-fade-15" href="/search/advanced">Advanced search</a>`);
})();