/*
* @title Twitter id
* @description show Twitter userid
* @include https://twitter.com/*
* @contributor hentai-kun http://let.hatelabo.jp/hentai-kun/let/hLHXpJbulNp6 (Fork of)
* @license New BSD License
* @javascript_url
*/
// original
// http://hentai-kun.hatenablog.jp/entry/2015/05/02/230000
// @javascript_url; for over the mixed-content blocker c.f.
// http://let.hatelabo.jp/help#at-javascript_url
// https://support.google.com/chrome/answer/1342714?hl=en
Array.prototype.some.call(document.querySelectorAll('[data-user-id]'), function (node) {
if (node.dataset.userId) {
window.prompt('userid', node.dataset.userId);
return true;
}
});