Jira auto-fill

try to take over the world!

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Jira auto-fill
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       Shuunen
// @match        https://extranet.systeme-u.fr/jira/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    if(document.getElementById('login-form-username')){

        console.log('jira fill start');

        setTimeout(function(){ document.getElementById('login-form-username').value='FILL_YOUR_USER'; } , 300);

        setTimeout(function(){ document.getElementById('login-form-password').value='FILL_YOUR_PASS'; } , 600);

        setTimeout(function(){ document.getElementById('login-form-remember-me').checked = true; } , 900);

        setTimeout(function(){ document.getElementById('login').click(); } , 1200);

    }

})();