web.de nologout-skipper

By Tproc Last update Apr 14, 2006 — Installed 1,559 times.

Archived Comments (locked)

in
Subscribe to Archived Comments 6 posts, 5 voices



Jesse Andrews Admin

The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)

 
ladiko User

the configurable one from first of may dont redirect me to inbox if i set the value to 1 :(

 
ladiko User

thank you for this script :-)

 
Son-Riab User

I made an update too! ;)
Now you can configurate the script by set 2 variables to 1 (enable) or 0 (disable).

====================================================
// ==UserScript==
// @name web.de nologout-skipper
// @description script to skip the nologout page from web.de
// @include https://*.web.de/*/nologout*
// @include https://*.web.de/*/startseite*
// @author Tproc
// @author modified by Son-Riab
// ==/UserScript==

/* ********** Configuration *********************
* Here you can configurate the script.
* To enable Features, set them to 1, else set them to 0.
* ********************************************** */

var skipNoLogoutPage = 1;
var inboxRedirect = 0;

/* ********** Script Init ***********************
* 1. get URL
* 2. get current int after freemailing
* 3. init session var
* ********************************************** */

var url = document.location.href;
var free = url.substring(url.indexOf("freemailing", free), url.indexOf(".web.de", free));
var session;

/* ********** skip no logout page ***************
* 1. get session-hash (and only the session hash)
* 2. redirect to start page
* ********************************************** */

if(url.indexOf('nologout') > -1 && skipNoLogoutPage == 1)
{
session = url.substring(url.indexOf("?si", session), url.indexOf("&goto=", session));
window.location.href = free +".web.de/online/frame.htm" + session;
}

/* ********** inbox redirect ********************
* 1. get session-hash (and the rest!)
* 2. redirect to inbox
* ********************************************** */

if(document.referrer.indexOf('frame.htm')>-1 && inboxRedirect == 1)
{
session = url.substring(url.indexOf("?si", session), url.length);
document.location.href = free +".web.de/online/ordner/anzeigen.htm" + session + '&rv_showfid=0';
}
====================================================

 
uyuni User

I made an update: This script redirects immediately to the inbox.

=============================================
// ==UserScript==
// @name web.de nologout-skipper
// @description script to skip the nologout page from web.de
// @include https://*.web.de/*/nologout*
// @include https://*.web.de/*/startseite*
// @author Tproc
// ==/UserScript==

var url = document.location.href;
var free = url.substring(url.indexOf("freemailing", free), url.indexOf(".web.de", free));
var session = url.substring(url.indexOf("?si", session), url.length);

if(url.indexOf('nologout') > -1) {
window.location.href = free +".web.de/online/frame.htm" + session;
}

else {
if(document.referrer.indexOf('frame.htm')>-1) document.location.href = free +".web.de/online/ordner/anzeigen.htm" + session + '&rv_showfid=0';
}
=============================================

 
stahlsau User

yeah, great! This is exactly for what i installed greasemonkey! Can't believe i have so much luck - i thought i had to write this on myself.

Thank you my friend for doing this for me ;)

cu
stahlsau

Cross
Presentational HTML allowed.
Use <code> for inline code and <pre> for code blocks. Use &lt; and &gt; for literal < and >.
We help break paragraphs and link your links.
or cancel