Add the "Explore" button to GitHub

Adds the now missing "Explore" button to github left item bar

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        Add the "Explore" button to GitHub
// @author      Leandro Poblet (tw: DoctorMalboro)
// @description Adds the now missing "Explore" button to github left item bar
// @namespace   add-explore-to-github
// @include     http*://github.com/*
// @version     0.1
// @grant       none
// ==/UserScript==

var items = 	document.getElementsByClassName('header-nav left');
var item = items.item(0);

item.innerHTML += '<li class="header-nav-item"><a class="js-selected-navigation-item header-nav-link" href="/explore">Explore</a></li>';