blob: 57d51f1f345762daf649d89afc8b4dd6af3004df (
plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
// ==UserScript==
// @name Krebs Affiliate Programs + extras (auto-SSL...)
// @namespace https://blogs.fsfe.org/h2/userscripts/
// @description Modify Amazon to support Krebs, always use SSL and shorten links (only Amazon)
// Contains the getASIN()-function from:
// http://userscripts.org/scripts/review/3284 by Jim Biancolo
// shamelessly stolen from
// http://userscripts.org/scripts/show/129547
//
// @version 0.42
// @include *
// @license CC0 / Do what the fuck you want to license
// see http://sam.zoy.org/wtfpl/
// see http://creativecommons.org/publicdomain/zero/1.0/
// @author Hannes Hauswedell
// @author makefu
// @homepage http://euer.krebsco.de
// ==/UserScript==
function getASIN(href) {
var asinMatch;
asinMatch = href.match(/\/exec\/obidos\/ASIN\/(\w{10})/i);
if (!asinMatch) { asinMatch = href.match(/\/gp\/product\/(\w{10})/i); }
if (!asinMatch) { asinMatch = href.match(/\/exec\/obidos\/tg\/detail\/\-\/(\w{10})/i); }
if (!asinMatch) { asinMatch = href.match(/\/dp\/(\w{10})/i); }
if (!asinMatch) { return null; }
return asinMatch[1];
}
(function()
{
var links = document.getElementsByTagName("a");
for (i = 0; i < links.length; i++)
{
var curLink = links[i].href;
// AMAZON
if (curLink.match(/https?\:\/\/(www\.)?amazon\./i))
{
var affiliateID = '';
var host = '';
if (curLink.match(/amazon\.de/i))
{
host = 'amazon.de';
affiliateID = 'krebsco-21';
}
else if (curLink.match(/amazon\.co\.uk/i))
{
host = 'amazon.co.uk';
affiliateID = 'krebscode-21';
}
else if (curLink.match(/amazon\.ca/i))
{
host = 'amazon.ca';
affiliateID = 'krebscoca-20';
}
else if (curLink.match(/amazon\.fr/i))
{
host = 'amazon.fr';
affiliateID = 'krebscode01-21';
}
else if (curLink.match(/amazon\.es/i))
{
host = 'amazon.es';
affiliateID = 'krebscode0f-21';
}
else if (curLink.match(/amazon\.it/i))
{
host = 'amazon.it';
affiliateID = 'krebscode04-21';
}
else if (curLink.match(/amazon\.com/i))
{
host = 'amazon.com';
affiliateID = 'krebsco-20';
}
var asin = getASIN(curLink);
if (affiliateID != '')
{
if (asin != null)
links[i].setAttribute("href", "https://www."+host+"/dp/" + asin + "/?tag="+affiliateID);
// else
// links[i].setAttribute("href", curLink + "?tag="+affiliateID);
}
}
}
})();
|