見てるページのURLとタイトルをメール新規作成画面(mailto:)に設定します
/* * @title 見てるページのURLをメール(mailto:)する * @description 見てるページのURLとタイトルをメール新規作成画面(mailto:)に設定します * @include http://* * @license MIT License * @require */ location.href = "mailto:?subject=" + document.title + "&body=" + location.href;