/*
* @title TipmonaTipBookmarklet.js
*
* When you see
* https://twitter.com/EXAMPLEUSER/...
* Then you jump to
* https://twitter.com/intent/tweet?text=@tipmona%20tip%20@EXAMPLEUSER%201%20Mona%20を贈ります。
*
* Written by Hiroshi Yuki.
* Licensed under CC0.
* https://creativecommons.org/publicdomain/zero/1.0/
*
*/
function start() {
if (location.href.match(/https:\/\/twitter\.com\/([^\/]+)/)) {
var username = RegExp.$1;
location = 'https://twitter.com/intent/tweet?text=@tipmona%20tip%20@' + username + '%201%20Mona%20を贈ります。';
} else {
alert("Username is not found.");
}
}
start();