您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Sberbank Online Remove fake input fields to repair KeeFox
// ==UserScript== // @name Sberbank Online Remove fake input fields // @version 0.1.2 // @namespace https://greasyfork.org/ru/scripts/9300-sberbank-online-remove-fake-input-fields // @author IceCube // @description Sberbank Online Remove fake input fields to repair KeeFox // @include https://online.sberbank.ru/* // ==/UserScript== var el = document.getElementById('loginForm'); var newHTML = el.innerHTML; var newHTML = newHTML.replace('<input style="display:none" name="fakeLogin" type="text">',""); var newHTML = newHTML.replace('<input style="display:none" name="fakePassword" type="password">',""); var newHTML = newHTML.replace('<input style="display: none; font-weight: 600; font-style: normal; color: rgb(204, 204, 255);" name="fakePassword" type="password">',""); el.innerHTML = newHTML;