// ==UserScript==
// @name Github导航栏扩展(添加Discover, Trending, Topics)
// @version 1.0
// @description 导航栏增加Discover, Trending, Topics
// @author Quanzaiyu
// @match http://*.github.com/*
// @match https://*.github.com/*
// @require https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js
// @run-at document-end
// @namespace https://greasyfork.org/users/8899
// @downloadURL none
// ==/UserScript==
var $ = $ || window.$;
window.jQuery = $;
$(document).ready(function(){
$('nav').append(`
`);
});