SPDBCCC

让官方不支持的系统和浏览器支持密码输入 Enable Password Input On Non-Supported Browsers & OS

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         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
// ==/UserScript==

(function() {
    'use strict';
    var txt = '<input name="Password" id="Password" type="password" onkeypress="mustDigit()"><input name="Passwordkeytype" id="Passwordkeytype" type="hidden" value="IcardPublicKey">';
    var pwd = document.getElementsByClassName("pwdShow")[0];
    pwd.outerHTML = txt;
})();