-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhfr_taille_des_i_mod_r21.user.txt
211 lines (193 loc) · 7.17 KB
/
hfr_taille_des_i_mod_r21.user.txt
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
// ==UserScript==
// @name [HFR] Limitation de la taille des images
// @version 0.2.4b
// @namespace http://toyonos.info
// @description Permet de limiter la taille des images dans les posts et de leur rendre leur taille d'origine par un clic sur une icône
// @include http://forum.hardware.fr/*
// @exclude http://forum.hardware.fr/message.php*
// ==/UserScript==
({
getElementByXpath : function (path, element)
{
var arr = Array(), xpr = document.evaluate(path, element, null, XPathResult.UNORDERED_NODE_ITERATOR_TYPE, null);
for (;item = xpr.iterateNext();) arr.push(item);
return arr;
},
get currentWidthSize()
{
return GM_getValue('hfr_lti_maxSize', 1000);
},
get currentHeightSize()
{
return GM_getValue('hfr_lti_maxYSize', 0);
},
setWidthMaxSize : function()
{
var maxSize = prompt("Largeur maximale des images ?", this.currentWidthSize);
if (!maxSize) return;
GM_setValue('hfr_lti_maxSize', maxSize);
},
setHeightMaxSize : function()
{
var maxSize = prompt("Hauteur maximale des images ? [-1 : désactivée | 0 : automatique | x : taille personnalisée", this.currentHeightSize);
if (!maxSize) return;
GM_setValue('hfr_lti_maxYSize', maxSize);
},
launch : function ()
{
// Menu pour sélectionner la taille maximale de l'image
var ltiScript = this;
GM_registerMenuCommand("[HFR] Limitation de la taille des images -> Largeur maximale", function () { ltiScript.setWidthMaxSize(); });
GM_registerMenuCommand("[HFR] Limitation de la taille des images -> Hauteur maximale", function () { ltiScript.setHeightMaxSize(); });
var root = document.getElementById('mesdiscussions');
ltiScript.getElementByXpath('//table//td[@class="messCase2"]//div[starts-with(@id, "para" )]//img', root).forEach(function (img)
{
var timer = setInterval(function()
{
if (!img.complete) return;
clearInterval(timer);
if (img.width > ltiScript.currentWidthSize || (ltiScript.currentHeightSize == '0' && img.height > window.innerHeight - 20) || (ltiScript.currentHeightSize > 0 && img.height > ltiScript.currentHeightSize))
{
img.style.maxWidth = ltiScript.currentWidthSize + 'px';
if (ltiScript.currentHeightSize != '-1')
{
img.style.maxHeight = ltiScript.currentHeightSize == '0' ? window.innerHeight - 20 + 'px' : ltiScript.currentHeightSize + 'px';
}
var newImg = document.createElement('img');
newImg.src = 'http://hfr-rehost.net/http://daf.csulb.edu/assets/icons/ie_expand_image.gif';
newImg.alt = newImg.title = "Agrandir / Rétrécir l'image";
newImg.style.cursor = 'pointer';
newImg.style.position = 'absolute';
newImg.style.zIndex = '100';
newImg.style.margin = '8px';
newImg.style.opacity = 0.2;
newImg.addEventListener('mouseover', function() { this.style.opacity = 1; }, false);
newImg.addEventListener('mouseout', function() { this.style.opacity = 0.2; }, false);
newImg.addEventListener('click', function(event)
{
img.style.maxWidth = img.style.maxWidth != '' ? '' : ltiScript.currentWidthSize + 'px';
if (ltiScript.currentHeightSize != '-1')
{
img.style.maxHeight = img.style.maxHeight != '' ? '' : (ltiScript.currentHeightSize == '0' ? window.innerHeight - 20 + 'px' : ltiScript.currentHeightSize + 'px');
}
event.preventDefault();
}
, false);
img.parentNode.insertBefore(newImg, img);
}
}
, 250);
}
);
}
}).launch();
// ============ Module d'auto update du script ============
({
check4Update : function()
{
var autoUpdate = this;
var mirrorUrl = GM_getValue('mirrorUrl', 'null');
if (mirrorUrl == 'null') autoUpdate.retrieveMirrorUrl();
var currentVersion = GM_getValue('currentVersion', '0.2.4b');
// On met éventuellement la version stockée à jour avec la version courante, si la version courante est plus récente
if (autoUpdate.isLater('0.2.4b', currentVersion))
{
GM_setValue('currentVersion', '0.2.4b');
currentVersion = '0.2.4b';
}
// Par contre, si la version stockée est plus récente que la version courante -> création un menu d'update pour la dernière version
else if (autoUpdate.isLater(currentVersion, '0.2.4b'))
{
GM_registerMenuCommand("[HFR] Limitation de la taille des images -> Installer la version " + currentVersion, function()
{
GM_openInTab(mirrorUrl + 'hfr_limitation_taille_images_b.user.js');
}
);
}
// Si la version courante et la version stockée sont identiques, on ne fait rien
if (GM_getValue('lastVersionCheck') == undefined || GM_getValue('lastVersionCheck') == '') GM_setValue('lastVersionCheck', new Date().getTime() + '');
// Pas eu de check depuis 24h, on vérifie...
if ((new Date().getTime() - GM_getValue('lastVersionCheck')) > 86400000 && mirrorUrl != 'null')
{
var checkUrl = mirrorUrl + 'getLastVersion.php5?name=' + encodeURIComponent('[HFR] Limitation de la taille des images');
if (isNaN(currentVersion.substring(currentVersion.length - 1))) checkUrl += '&sversion=' + currentVersion.substring(currentVersion.length - 1);
GM_xmlhttpRequest({
method: "GET",
url: checkUrl,
onload: function(response)
{
var regExpVersion = new RegExp('^[0-9]{1,2}\.[0-9]{1,2}\.[0-9]{1,2}[a-zA-Z]?$');
var lastVersion = response.responseText;
// Pas d'erreur et nouvelle version plus récente
if (lastVersion != '-1' && regExpVersion.test(lastVersion) && autoUpdate.isLater(lastVersion, currentVersion))
{
if (confirm('Une nouvelle version de [HFR] Limitation de la taille des images est disponible : ' + lastVersion + '\nVoulez-vous l\'installer ?'))
{
GM_openInTab(mirrorUrl + 'hfr_limitation_taille_images_b.user.js');
}
else
{
// Mémorisation de la version refusée : elle servira de version de référence
GM_setValue('currentVersion', lastVersion);
}
}
GM_setValue('lastVersionCheck', new Date().getTime() + '');
}
});
}
},
max : function(v1, v2)
{
var tabV1 = v1.split('.');
var tabV2 = v2.split('.');
if (isNaN(tabV1[2].substring(tabV1[2].length - 1))) tabV1[2] = tabV1[2].substring(0, tabV1[2].length - 1);
if (isNaN(tabV2[2].substring(tabV2[2].length - 1))) tabV2[2] = tabV2[2].substring(0, tabV2[2].length - 1);
if ((tabV1[0] > tabV2[0])
|| (tabV1[0] == tabV2[0] && tabV1[1] > tabV2[1])
|| (tabV1[0] == tabV2[0] && tabV1[1] == tabV2[1] && tabV1[2] > tabV2[2]))
{
return v1;
}
else
{
return v2;
}
},
isLater : function(v1, v2)
{
return v1 != v2 && this.max(v1, v2) == v1;
},
retrieveMirrorUrl : function()
{
var mirrors = 'http://hfr.toyonos.info/gm/;http://hfr-mirror.toyonos.info/gm/'.split(';');
var checkMirror = function (i)
{
var mirror = mirrors[i];
GM_xmlhttpRequest({
url: mirror + 'getLastVersion.php5',
method: "HEAD",
onload: function(response)
{
// Dès qu'un miroir répond, on le mémorise.
if (response.status == 200)
{
GM_setValue('mirrorUrl', mirror);
}
else
{
// Sinon on test le prochain
if ((i + 1) < mirrors.length)
{
checkMirror(i + 1);
}
else
{
GM_setValue('mirrorUrl', 'null');
}
}
}
});
};
checkMirror(0);
},
}).check4Update();