Wikipedia Auto Login

Logs you into Wikipedia if you use the password save feature of your browser.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name        Wikipedia Auto Login
// @include     http://*.wikipedia.org/*
// @include     https://*.wikipedia.org/*
// @include     http://*.wikivoyage.org/*
// @include     https://*.wikivoyage.org/*
// @version     1
// @grant       none
// @description Logs you into Wikipedia if you use the password save feature of your browser.
// @namespace https://greasyfork.org/users/2209
// ==/UserScript==

// check if login button is present
var loginPossible = document.getElementById("pt-login");
if(loginPossible){
   var foo = loginPossible.getElementsByTagName("a")[0];
   location.href = foo.href;
}

// login on login page
var zurueck = document.getElementById("mw-returnto");
if(zurueck){
	var zurueckLink = zurueck.getElementsByTagName("a")[0];
	if(zurueckLink){
		location.href = zurueckLink.href;
	}
}

window.setTimeout("document.getElementById('wpRemember').click(); ", 10);

if (document.forms['userlogin'].wpName.value)
window.setTimeout("document.getElementById('wpLoginAttempt').click(); ", 10);