diff --git a/main(greasyfork).user.js b/main(greasyfork).user.js index b7750a34a..2c620ec17 100644 --- a/main(greasyfork).user.js +++ b/main(greasyfork).user.js @@ -15,6 +15,7 @@ // @grant GM_getValue // @grant GM_setValue // @grant GM_registerMenuCommand +// @grant GM_unregisterMenuCommand // @grant GM_notification // @connect www.iflyrec.com // @supportURL https://github.com/maboloshi/github-chinese/issues @@ -214,10 +215,10 @@ page = t ? 'repository/' + t[1] : 'repository'; } else if (isOrganization) { // 组织页 t = pathname.match(I18N.conf.rePagePathOrg); - page = t ? 'orgs/' + t[1] : 'orgs'; + page = t ? 'orgs/' + (t[1] || t.slice(-1)[0]) : 'orgs'; } else { t = pathname.match(I18N.conf.rePagePath); - page = t ? t[1] : false; // 取页面 key + page = t ? (t[1] || t.slice(-1)[0]) : false; // 取页面 key } if (!page || !I18N[lang][page]) {