// ==UserScript== // @name 浦发银行信用卡网银登陆页显示密码输入框 Enable PWD Input For SPDBCCC // @namespace https://www.fireawayh.ml/ // @version 0.1 // @description 让官方不支持的系统和浏览器支持密码输入 Enable Password Input On Non-Supported Browsers & OS // @author FireAwayH // @match https://cardsonline.spdbccc.com.cn/icard/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var txt = ''; var pwd = document.getElementsByClassName("pwdShow")[0]; pwd.outerHTML = txt; })();