/*
* @title [twitter:@ACCOUNT][twitter:ID:detail]
* @description Quote a tweet in Hatena Twitter Syntax with <at>account
* @include http://twitter.com/*
* @include https://twitter.com/*
* @license MIT License http://nrm.mit-license.org/2012
* @require
*/
(function () {
var meta = (/https?:\/\/twitter\.com\/([\w]+)\/status\/(\d+)/.exec(location.href) || []).slice(1);
if (meta.length < 2) return;
var syntax = '[twitter:@' + meta[0] + ']' + '[twitter:' + meta[1] + ':detail]';
prompt('Copy Me', syntax); // TODO prompt '\n'
})();