/*
* @title 前年同日のはてなブログを全文表示する
* @description 長年日記をさかのぼって読みたい人向け。はてなブログ(独自ドメイン可)で「http(s)://~/entries/yyyy/mm/dd」というURLを表示しているときに実行すると、前の年の同じ日へ移動します。http://let.hatelabo.jp/Imamura/let/hLHXgaqN4JUQのあとに実行することを想定しています。
* @include http://*
* @license MIT License
* @require
*/
javascript:(function(){var url = location.href.match(/(https?:\/\/[^\/]+\/entries\/)(\d{4})(\/\d\d\/\d\d)/);location.href=url[1]+(--url[2])+url[3];})();