Keijir Blog

やっぱハワイ行きたいよね

Vimperator3.0 で Starボタンをステータスバーに移動する方法!

Vimperator2.0はこっちだよ。
Starボタンをステータスバーに移動 - keijir blog

.vimperatorrc

" Show star-button to statusbar
:javascript <<EOF
(function(){
var starPanel = document.createElement('statusbarpanel');
var starButton = document.getElementById('star-button');
starPanel.setAttribute('id','star-panel-clone');
starPanel.appendChild(starButton.cloneNode(true));
starButton.parentNode.removeChild(starButton);
document.getElementById('status-bar').insertBefore(starPanel,document.getElementById('RIL_offlineProgress'));
})();
EOF