try to take over the world!
// ==UserScript==
// @name github新标签页打开
// @namespace http://tampermonkey.net/
// @version 0.2
// @description try to take over the world!
// @author You
// @match https://*.github.com/*
// @match https://*.gitee.com/*
// @match https://*.greasyfork.org/*
// @require http://libs.baidu.com/jquery/2.0.0/jquery.min.js
// @grant none
// ==/UserScript==
(function() {
'use strict';
$(function () {
$("a").each(function () {
$(this).attr("target","_blank");
})
})
// Your code here...
})();