06-30-2018, 01:39 PM
Hi,
I modified W.A.R. Links Checker Premium and found a problem with up-4ever.com. It became up-4.net :
https://www.up-4.net/rybqkdwc4jh5
https://www.up-4.net/rybqkdwc4jh4
in if (GM_getValue("Check_dash_4ever_dot_com_links", false)) the up is missing. I modify it that way :
I add a few things too and I give them here just in case you want to add them :
Finally I add this line too : // @exclude https://www.sous-titres.eu/*
Without W.A.R. Links Checker Premium
![[Image: Capture.jpg]](https://preview.ibb.co/mzYMZy/Capture.jpg)
With W.A.R. Links Checker Premium
![[Image: Capture.jpg]](https://preview.ibb.co/bsngZy/Capture.jpg)
I hope that can help. Thanks a lot for your script !
Have a nice day,
Patatra
-----------
French
I modified W.A.R. Links Checker Premium and found a problem with up-4ever.com. It became up-4.net :
https://www.up-4.net/rybqkdwc4jh5
https://www.up-4.net/rybqkdwc4jh4
in if (GM_getValue("Check_dash_4ever_dot_com_links", false)) the up is missing. I modify it that way :
Code:
if (GM_getValue("Check_up_dash_4ever_dot_com_links", false))
{
addFileHost(
"(?:up-4ever\\.com\/\\w+)|(?:up-4\\.net\/\\w+)",
'name="method_free"',
'File Not Found',
'optional1--',
'optional2',
"//a[contains(@href,'up-4ever.com') or contains(@href,'www.up-4.net')]"
);
}I add a few things too and I give them here just in case you want to add them :
Code:
//Ajout 2giga.link :
if (GM_getValue("Check_2giga_dot_link_links", false))
{
addFileHost(
"2giga\\.link\/\\w+",
'id="downloadb"',
'File not found',
'optional--',
'optional2--',
"//a[contains(@href,'2giga.link')]"
);
}
//Ajout sora.io :
if (GM_getValue("Check_sora_dot_io_links", false))
{
addFileHost(
"sora\\.io\/\\w+",
'</html>',
'',
'optional--',
'optional2--',
"//a[contains(@href,'sora.io')]"
);
}
//Ajout de mon-partage.fr :
if (GM_getValue("Check_mon_dash_partage_dot_fr_links", false))
{
addFileHost(
"mon-partage\\.fr\/\\w+",
'Télécharger|id="bouton_download"',
'Ce fichier n\'existe pas ou plus',
'optional--',
'optional2--',
"//a[contains(@href,'mon-partage.fr')]"
);
}Finally I add this line too : // @exclude https://www.sous-titres.eu/*
Without W.A.R. Links Checker Premium
![[Image: Capture.jpg]](https://preview.ibb.co/mzYMZy/Capture.jpg)
With W.A.R. Links Checker Premium
![[Image: Capture.jpg]](https://preview.ibb.co/bsngZy/Capture.jpg)
I hope that can help. Thanks a lot for your script !

Have a nice day,
Patatra
-----------
French

