[ROBLOX] Password To Text

this will remove the °°°° aka this https://cdn.discordapp.com/attachments/1035588336678604802/1085826633782542336/image.png and it will show your password if you want to login to an other browser without hard time

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         [ROBLOX] Password To Text
// @namespace    https://wellidontknowwhattoputherellol.com
// @version      1.4
// @description  this will remove the °°°° aka this https://cdn.discordapp.com/attachments/1035588336678604802/1085826633782542336/image.png and it will show your password if you want to login to an other browser without hard time
// @author       TheRealKr4sk
// @match        https://www.roblox.com/login
// @icon         https://i.pinimg.com/originals/eb/06/7b/eb067b4bfbb01e2e73209f45afa42f1a.jpg
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
const passwordThing = document.querySelector('input[type="password"]'); // check for password that means it will check if the type is a password
passwordThing.type = 'text'; // if the type is a password it will make it as a text

})();