/*
* @title ファイル名を表示
* @description location.pathnameはhtpageなどではなく/entry/htmltest/htpageのような値を返すので、いろいろやってアラートでファイル名を表示できるようにしました。
* @include http://*
* @license MIT License
* @require
*/
alert("ファイル名は、\n" + location.pathname.slice(location.pathname.lastIndexOf("/") + 1) + "\nです。");