/*
* @title !show_password
* @description パスワード入力欄を見えるように変更します
* @include http://*
* @license MIT License
* @require
*/
Array.prototype.forEach.call(document.querySelectorAll("input[type='password']"), function(el){el.setAttribute("type", "text");})