/*
* @title 2年前のはてなブックマーク
* @description 2年前の自分のはてなブックマークを見る
* @license MIT License
*/
n = 2;
DD = new Date;
Y = String(DD.getFullYear() - n);
M = "0" + String(DD.getMonth() + 1);
M = M.slice(-2);
D = "0" + String(DD.getDate());
D = D.slice(-2);
MD = M + D;
"0229" == MD && (MD = "0228");
location.href = "https://b.hatena.ne.jp/my/" + Y + MD;