/*
* @title TwitterのユーザーIDを取得するブックマークレット
* @description kwsk → http://hentai-kun.hatenablog.jp/entry/2015/05/02/230000
* @include https://twitter.com/*
* @license New BSD License
* @require
*/
(function() {
var p = document.getElementsByClassName('ProfileNav');
if (p.length) {
var id = p[0].getAttribute('data-user-id');
window.prompt('User ID', id);
}
})()