/*
* @title Just Tweet With Hootsuite
* @description Hootlet without URL shortener
* @include http*://*
* @javascript_url
*/
// https://hootsuite.com/features/extensions/hootlet のbookmarkletを参考にした
var url = 'https://hootsuite.com/hootlet/load';
(function() {
// この下の2行、本当に両方必要かは疑問。片方しか基本動かないんでは?
if (!window.open(url,'t','scrollbars=0,toolbar=0,location=0,resizable=0,status=0,width=450,height=600'))
document.location.href=url;
})();
void(0);