// ==UserScript== // @name Foreman Autologin // @namespace https://kps.com/ // @version 0.2 // @description Automatically login into Foreman // @author Dennis Ploeger // @require https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js // @grant none // @downloadUrl https://gist.github.com/dploeger/30d5c0e3bed70b1fbb06a45a6d7a6ced/raw // @updateUrl https://gist.github.com/dploeger/30d5c0e3bed70b1fbb06a45a6d7a6ced/raw // ==/UserScript== (function() { 'use strict'; const login = () => { if ($('#login_login').length == 0) { window.setTimeout(login,1000) return } $('form').submit() } window.setTimeout(login, 1000) })();