yen867gmail.com / insc_in_new_tab

// ==UserScript==
// @name           insc_in_new_tab
// @namespace      
// @description    lesson in new tab
// @author         alexw
// @include        http://insc.tp.edu.tw/cls/ClsShowLst.aspx*
// @version 0.1
// ==/UserScript==

var review = document.getElementById("ctl00_ContentPlaceHolder1_DataList1_ctl01_lnVIEW");
if (review){
    var inscform = document.getElementById('aspnetForm');
    inscform.setAttribute('target', '_blank');
}