my bookmarklet
/* * @title 現在閲覧しているページのタイトルとURLをalert * @description my bookmarklet * @include http://* * @license MIT License * @require */ (function() { alert(document.getElementsByTagName('title')[0].innerText + ' - ' + location.href); })();