Wikipedia Auto Login

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

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey 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.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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        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);