2025年10月28日

Bookmarklets 書籤小工具

顯示所有密碼欄位的內容

用途:輸入密碼錯字又無法看到?一鍵顯示密碼。

程式碼: 


javascript:(function(){var x=document.querySelectorAll('input[type="password"]');for(var i=0;i<x.length;i++){x[i].type='text';}})();