新标签打开

github 新标签页打开

ของเมื่อวันที่ 12-12-2017 ดู เวอร์ชันล่าสุด

// ==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");
    });
})();
长期地址
遇到问题?请前往 GitHub 提 Issues。