Ihenjlink / thinfi remove password hide

// ==UserScript==
// @name         thinfi remove password hide
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  enlève la cachage du mot de passe sur thinfi
// @author       Ihenjlink
// @match        https://thinfi.com/*
// @grant        none
// @copyright 2019, Ihenjlink (https://openuserjs.org//users/Ihenjlink)
// @license GPL-3.0-or-later
// ==/UserScript==

(function() {
    'use strict';

    document.getElementById('password').type = 'text';
})();