UserScripts Archive
A few bugs - Printable Version

+- UserScripts Archive (http://usa.x10host.com/mybb)
+-- Forum: UserScripts Archive (http://usa.x10host.com/mybb/forumdisplay.php?fid=1)
+--- Forum: Script Support (http://usa.x10host.com/mybb/forumdisplay.php?fid=3)
+---- Forum: W.A.R. Links Checker Premium (http://usa.x10host.com/mybb/forumdisplay.php?fid=6)
+---- Thread: A few bugs (/showthread.php?tid=297)



A few bugs - Patatra - 06-30-2018

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 :
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]

With W.A.R. Links Checker Premium
[Image: Capture.jpg]

I hope that can help. Thanks a lot for your script ! Smile

Have a nice day,

Patatra



-----------
French


RE: A few bugs - mental - 07-01-2018

Thanks Patatra, I can add those changes any help with the script is appreciated.

for sora.io, Could you not find the needed code for the live & dead links ?, I can't find any sora.io links to check myself.


RE: A few bugs - Patatra - 07-01-2018

I'm glad I could help. Thank's a lot for thoses changes

sora.io is working with that code even if that's quite weird. I don't have any working link but a dead link is just a blank page :
Code:
https://sora.io/en/d/yqfoRcMz8xEcxMkf


PS: Jeodrive.com just closed today.


RE: A few bugs - mental - 07-02-2018

ok, all changes have been added


RE: A few bugs - Patatra - 07-02-2018

Thank you very much. You add those changes rapidly! Smile