// ==UserScript== // @name 新标签打开 // @namespace http://tampermonkey.net/ // @version 0.3 // @description github 新标签页打开 // @author hxtgirq710@qq.com // @match http*://*.github.com/* // @match http*://packagist.org/* // @require https://code.jquery.com/jquery-latest.js // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; $(function(){ switch(window.location.host) { case "packagist.org": setInterval(function(){ $(".package-item h4>a").attr("target", "_blank"); }, 1000); break; default: $(".repo-list h3>a").attr("target", "_blank"); break; } }); })();