Pull Request Assignee
by
laiso
2016-02-21 [2016/02/21 11:48:22]
/*
* @title Pull Request Assignee
* @description
* @include http://*
* @license MIT License
*/
var icons = jQuery('.js-issue-row')
.toArray()
.map((issue) => { return issue.querySelector('img') })
.filter((img) => { return img !== null})
.sort((a, b) => { return a.alt.localeCompare(b.alt) })
.reduce((container, user) => { container.appendChild(user); return container }, document.createElement('div'));
document.querySelector('.repository-content').insertBefore(icons, document.querySelector('.issues-listing'));
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。