/*
* @title はてな記法でタイトルとURLをprompt
* @description [URL:title=タイトル]という形式でページのタイトルとURLをpromptします
* @include *
* @license MIT License
* @javascript_url
*/
(function(){
const content = `[${location.href}:title=${document.title}]`;
prompt('', content);
// これは動かない
// copy(content)
})();