/*
* @title はてブ touch メニュー開閉
* @description 鬱陶しいメニュー開閉補助 スマートフォン用
* @include http://*
* @license CC0 1.0
* @require
* @javascript_url
*/
(function () {
if (location.hostname !== 'b.hatena.ne.jp' || !/hatena-bookmark-touch/.test(document.querySelector('body').id)) {
alert('はてブスマートフォン版専用です')
return;
}
var btn = document.getElementById('side-menu-button');
if (btn) {
btn.click();
} else {
return;
}
})();
/* コピペメール送信用
javascript:(function(){if(location.hostname!=="b.hatena.ne.jp"||!/hatena-bookmark-touch/.test(document.querySelector("body").id)){alert("はてブスマートフォン版専用です");return}var a=document.getElementById("side-menu-button");if(a){a.click()}else{return}})();
*/