見ているページのリンクをマークダウン形式のlinkをpromptで出す
/* * @title make markdown link * @description 見ているページのリンクをマークダウン形式のlinkをalertするやつ * @include http://* * @license MIT License * @require */ alert("[" + document.querySelector('title').textContent + "](" + location.href + ")");