-
Notifications
You must be signed in to change notification settings - Fork 0
/
MyDealz Weiterleitung.user.js
35 lines (29 loc) · 1.02 KB
/
MyDealz Weiterleitung.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// ==UserScript==
// @name MyDealz Weiterleitung
// @namespace http://www.mydealz.de
// @version 1.1
// @description Automatische Weiterleitung von heißen Dealz auf aktuelle Dealz
// @author Ramoth
// @include http://www.mydealz.de/deals
// @include http://www.mydealz.de/gutscheine
// @include http://www.mydealz.de/freebies
// @grant none
// ==/UserScript==
var oldDeals = "http://www.mydealz.de/deals";
var newDeals = "http://www.mydealz.de/deals-new";
var oldGutscheine = "http://www.mydealz.de/gutscheine";
var newGutscheine = "http://www.mydealz.de/gutscheine-new";
var oldFreebies = "http://www.mydealz.de/freebies";
var newFreebies = "http://www.mydealz.de/freebies-new";
if (document.location.href.indexOf(oldDeals) == 0)
{
document.location.href=newDeals;
}
if (document.location.href.indexOf(oldGutscheine) == 0)
{
document.location.href=newGutscheine;
}
if (document.location.href.indexOf(oldFreebies) == 0)
{
document.location.href=newFreebies;
}