Apifox接口文档分享设置密码框为password

Apifox接口文档分享别人进入为text输入框,不能让浏览器记住,使用该插件能让让浏览器自动记住,下次不必去翻找密码

// ==UserScript==
// @name         Apifox接口文档分享设置密码框为password
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Apifox接口文档分享别人进入为text输入框,不能让浏览器记住,使用该插件能让让浏览器自动记住,下次不必去翻找密码
// @author       XianwenYu
// @match        https://apifox.com/apidoc/auth-shared*
// @icon         https://apifox.com/favicon.ico
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    setTimeout(function(){
        document.querySelector('#password').setAttribute('type','password')
        console.log('😄');
    },1000)
})();