github 新标签页打开
当前为
// ==UserScript== // @name 新标签打开 // @namespace http://tampermonkey.net/ // @version 0.1 // @description github 新标签页打开 // @author [email protected] // @match http*://*.github.com/* // @require https://code.jquery.com/jquery-latest.js // @grant none // ==/UserScript== (function() { 'use strict'; $(function(){ $(".repo-list h3>a").attr("target", "_blank"); }); })();