Skip to content

Commit

Permalink
More websites/rules
Browse files Browse the repository at this point in the history
Fixes #1326
  • Loading branch information
qsniyg committed May 19, 2024
1 parent 7e35080 commit 462b2b8
Show file tree
Hide file tree
Showing 2 changed files with 122 additions and 61 deletions.
95 changes: 63 additions & 32 deletions src/userscript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33996,6 +33996,10 @@ var $$IMU_EXPORT$$;
// https://inglam.club/img/2024/04/Joey-King-30th-Annual-Screen-Actors-Guild-Awards-2024-3FD47855-133x200.jpg
// https://inglam.club/img/2024/04/Joey-King-30th-Annual-Screen-Actors-Guild-Awards-2024-3FD47855.jpg
(domain_nowww === "inglam.club" && /\/img\//.test(src)) ||
// thanks to anonymous for reporting:
// https://d23.com/app/uploads/2024/05/1180w_600h_051724_Pepe_Disney_Springs_FL_Offer_00-1024x521.jpg
// https://d23.com/app/uploads/2024/05/1180w_600h_051724_Pepe_Disney_Springs_FL_Offer_00.jpg
(domain_nowww === "d23.com" && /\/app\/+uploads\//.test(src)) ||
// https://wp-assets.futurism.com/2024/01/Screenshot-2024-01-12-at-10.19.15%E2%80%AFAM-1200x865.png
// https://wp-assets.futurism.com/2024/01/Screenshot-2024-01-12-at-10.19.15%E2%80%AFAM.png
domain === "wp-assets.futurism.com"
Expand Down Expand Up @@ -57827,10 +57831,37 @@ var $$IMU_EXPORT$$;
return src.replace(/\/thumbs\/[0-9]+x[0-9]+_/, "/");
}

if (domain === "img.gestion.pe") {
if (domain === "img.gestion.pe" ||
// http://www.multimedios.com/files/og_thumbnail/uploads/2017/09/04/59ad996ab60d9.jpeg
// http://www.multimedios.com/uploads/2017/09/04/59ad996ab60d9.jpeg
domain_nowww === "multimedios.com" ||
// https://imagenes.heraldo.es/files/image_150_v3/uploads/imagenes/2020/11/12/anya-taylor-joy-como-la-genia-del-ajedrez-beth-harmon-en-la-serie-gambito-de-dama.png
// https://imagenes.heraldo.es/uploads/imagenes/2020/11/12/anya-taylor-joy-como-la-genia-del-ajedrez-beth-harmon-en-la-serie-gambito-de-dama.png
domain === "imagenes.heraldo.es" ||
// thanks to sn3akyb3ar on github: https://github.com/qsniyg/maxurl/issues/1326
// https://www.lavanguardia.com/files/content_image_desktop_filter/uploads/2020/11/27/5fc037b9cc702.jpeg
// https://www.lavanguardia.com/uploads/2020/11/27/5fc037b9cc702.jpeg
domain_nowww === "lavanguardia.com") {
// https://img.gestion.pe/files/ec_article_multimedia_gallery/uploads/2017/11/08/5a03a7dc67e6a.jpeg -- stretched
// https://img.gestion.pe/uploads/2017/11/08/5a03a7dc67e6a.jpeg
return src.replace(/\/files\/[^/]*\/uploads\//, "/uploads/");
return src.replace(/\/files\/+[^/]+\/+uploads\//, "/uploads/");
//return src.replace(/(:\/\/[^/]*\/)files\/[^/]*\/uploads\//, "$1uploads/");
//return src.replace(/\/files\/+image_[^/]+\/+(uploads\/+imagenes\/+)/, "/$1");
}

if (domain === "imagenes.cronica.com.mx" ||
// https://imghandler.cronica.com.mx/files/image_948_465/files/fp/uploads/2024/05/04/6636c21b5dafb.jpeg
// https://imagenes.cronica.com.mx/uploads/2024/05/04/6636c21b5dafb.jpeg
domain === "imghandler.cronica.com.mx") {
// thanks to sn3akyb3ar on github: https://github.com/qsniyg/maxurl/issues/1321
// https://imagenes.cronica.com.mx/files/image_948_465/files/fp/uploads/2024/05/04/6636c21b5dafb.r_d.974-506-4938.jpeg
// https://imagenes.cronica.com.mx/files/image_948_465/files/fp/uploads/2024/05/04/6636c21b5dafb.jpeg
// https://imagenes.cronica.com.mx/uploads/2024/05/04/6636c21b5dafb.jpeg
// https://imagenes.cronica.com.mx/files/content_image_desktop_filter/uploads/2024/05/04/6636c5b6a654c.jpeg
// https://imagenes.cronica.com.mx/uploads/2024/05/04/6636c5b6a654c.jpeg
return src
.replace(/:\/\/[^/]+\/+.*?\/(uploads\/+[0-9]{4}\/+(?:[0-9]{2}\/+){2}[0-9a-f]{5,}\.[a-z]+)(?:[?#].*)?/, "://imagenes.cronica.com.mx/$1")
.replace(/(\/uploads\/+[0-9]{4}\/+(?:[0-9]{2}\/+){2}[0-9a-f]{5,}\.)[^/?#]+\.([a-z]+)(?:[?#].*)?$/, "$1$2");
}

if (domain === "thumb.guucdn.net") {
Expand Down Expand Up @@ -65239,12 +65270,6 @@ var $$IMU_EXPORT$$;
return src.replace(/(:\/\/[^/]*\/main\/)thumbs\//, "$1images/");
}

if (domain_nowww === "multimedios.com") {
// http://www.multimedios.com/files/og_thumbnail/uploads/2017/09/04/59ad996ab60d9.jpeg
// http://www.multimedios.com/uploads/2017/09/04/59ad996ab60d9.jpeg
return src.replace(/(:\/\/[^/]*\/)files\/[^/]*\/uploads\//, "$1uploads/");
}

if (domain === "file.hstatic.net") {
// https://file.hstatic.net/1000162927/file/zendaya-feet-2287006_grande.jpg
// https://file.hstatic.net/1000162927/file/zendaya-feet-2287006.jpg
Expand Down Expand Up @@ -81141,10 +81166,16 @@ var $$IMU_EXPORT$$;
return src.replace(/\/sz\/+[-0-9]+x[-0-9]+\/+images\/+/, "/images/");
}

if (domain_nosub === "kgimg.com") {
if (domain_nosub === "kgimg.com" ||
// thanks to tathastu871 on discord:
// https://imgessl.kugou.com/custom/150/20230923/20230923205634287593.jpg
// https://imgessl.kugou.com/custom/20230923/20230923205634287593.jpg
// https://imgessl.kugou.com/stdmusic/240/20240515/20240515183102515308.jpg
// https://imgessl.kugou.com/stdmusic/20240515/20240515183102515308.jpg
domain === "imgessl.kugou.com") {
// https://p3fx.kgimg.com/kugouicon/165/20190117/20190117073537290387.jpg
// https://p3fx.kgimg.com//kugouicon/20190117/20190117073537290387.jpg
return src.replace(/(\/kugouicon\/+)[0-9]+\/+([0-9]{8}\/+[0-9]+\.[^/.]*)(?:[?#].*)?$/, "/$1$2");
// https://p3fx.kgimg.com/kugouicon/20190117/20190117073537290387.jpg
return src.replace(/(\/[a-z]+\/+)[0-9]+\/+([0-9]{8}\/+[0-9]+\.[^/.]*)(?:[?#].*)?$/, "$1$2");
}

if (domain === "s.starladder.com") {
Expand Down Expand Up @@ -104704,12 +104735,6 @@ var $$IMU_EXPORT$$;
return src.replace(/(\/uploads\/+)resize-[a-z]+\/+/, "$1");
}

if (domain === "imagenes.heraldo.es") {
// https://imagenes.heraldo.es/files/image_150_v3/uploads/imagenes/2020/11/12/anya-taylor-joy-como-la-genia-del-ajedrez-beth-harmon-en-la-serie-gambito-de-dama.png
// https://imagenes.heraldo.es/uploads/imagenes/2020/11/12/anya-taylor-joy-como-la-genia-del-ajedrez-beth-harmon-en-la-serie-gambito-de-dama.png
return src.replace(/\/files\/+image_[^/]+\/+(uploads\/+imagenes\/+)/, "/$1");
}

if (domain === "img.mm52.com") {
// https://img.mm52.com/a/anya_taylor_joy/anya_taylor_joy_0379_128px.jpg
// https://img.mm52.com/a/anya_taylor_joy/anya_taylor_joy_0379_620px.jpg
Expand Down Expand Up @@ -114038,21 +114063,6 @@ var $$IMU_EXPORT$$;
return src.replace(/(\/[-0-9a-f]{10,}\/+[0-9a-f]+\/+)[0-9]+x[0-9]+\./, "$1original.");
}

if (domain === "imagenes.cronica.com.mx" ||
// https://imghandler.cronica.com.mx/files/image_948_465/files/fp/uploads/2024/05/04/6636c21b5dafb.jpeg
// https://imagenes.cronica.com.mx/uploads/2024/05/04/6636c21b5dafb.jpeg
domain === "imghandler.cronica.com.mx") {
// thanks to sn3akyb3ar on github: https://github.com/qsniyg/maxurl/issues/1321
// https://imagenes.cronica.com.mx/files/image_948_465/files/fp/uploads/2024/05/04/6636c21b5dafb.r_d.974-506-4938.jpeg
// https://imagenes.cronica.com.mx/files/image_948_465/files/fp/uploads/2024/05/04/6636c21b5dafb.jpeg
// https://imagenes.cronica.com.mx/uploads/2024/05/04/6636c21b5dafb.jpeg
// https://imagenes.cronica.com.mx/files/content_image_desktop_filter/uploads/2024/05/04/6636c5b6a654c.jpeg
// https://imagenes.cronica.com.mx/uploads/2024/05/04/6636c5b6a654c.jpeg
return src
.replace(/:\/\/[^/]+\/+.*?\/(uploads\/+[0-9]{4}\/+(?:[0-9]{2}\/+){2}[0-9a-f]{5,}\.[a-z]+)(?:[?#].*)?/, "://imagenes.cronica.com.mx/$1")
.replace(/(\/uploads\/+[0-9]{4}\/+(?:[0-9]{2}\/+){2}[0-9a-f]{5,}\.)[^/?#]+\.([a-z]+)(?:[?#].*)?$/, "$1$2");
}

if (domain_nowww === "lddb.com") {
// thanks to CetaceanNation on github: https://github.com/qsniyg/maxurl/issues/1320
// https://www.lddb.com/laserdisc/37544/SF098-1168/Back-to-the-Future
Expand Down Expand Up @@ -114153,6 +114163,25 @@ var $$IMU_EXPORT$$;
return src.replace(/(\/images\/.*?\.jpg)x\?.*/, "$1");
}

if (domain_nosub === "gloria-jeans.ru" && /^storage-cdn[0-9]*\./.test(domain)) {
// thanks to anonymous for reporting:
// https://storage-cdn10.gloria-jeans.ru/pictures/Haki-sorty-Chino-fit_BSH007490-1_01_1200Wx1200H.jpeg?q=634724
// https://storage-cdn10.gloria-jeans.ru/pictures/Haki-sorty-Chino-fit_BSH007490-1_01_WxH.jpeg - 1885x2399
return src.replace(/(\/pictures\/+[^/]+_)[0-9]*Wx[0-9]*H(\.[a-z]+)(?:[?#].*)?$/, "$1WxH$2");
}

if (domain_nowww === "codingtube.tech") {
// thanks to anonymous for reporting:
// https://codingtube.tech/webimage2/aHR0cHM6Ly9jb2Rpbmd0dWJlLnRlY2gvbmV3c3VybC9pbWd1cGxvYWRzLzE3MDY4MDMyMDguanBn/900/1600/Jackie-Robinson%3A-Breaking-Barriers-and-Paving-the-Way.jpg
// https://codingtube.tech/newsurl/imguploads/1706803208.jpg
// https://codingtube.tech/biography/ogimage/aHR0cHM6Ly9pbWFnZS50bWRiLm9yZy90L3AvdzUwMC8vbVRkQUNtaXRkcndvcjBOcnY1c3IwdTEyM3ZaLmpwZw==/Image.png
// https://image.tmdb.org/t/p/original/mTdACmitdrwor0Nrv5sr0u123vZ.jpg
match = src.match(/\/(aHR0c[^/]+)\//);
if (match) {
return base64_decode(match[1]);
}
}




Expand Down Expand Up @@ -128243,6 +128272,8 @@ var $$IMU_EXPORT$$;
if (!style)
break;

//nir_debug("find_source", "check_visible:", el, style.opacity.toString(), style.visibility);

if (style.opacity.toString().match(/^0(?:\.0*)?$/) ||
(visible_valid && style.visibility === "hidden")) {
return false;
Expand Down
88 changes: 59 additions & 29 deletions userscript.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -31145,6 +31145,10 @@ var $$IMU_EXPORT$$;
// https://inglam.club/img/2024/04/Joey-King-30th-Annual-Screen-Actors-Guild-Awards-2024-3FD47855-133x200.jpg
// https://inglam.club/img/2024/04/Joey-King-30th-Annual-Screen-Actors-Guild-Awards-2024-3FD47855.jpg
(domain_nowww === "inglam.club" && /\/img\//.test(src)) ||
// thanks to anonymous for reporting:
// https://d23.com/app/uploads/2024/05/1180w_600h_051724_Pepe_Disney_Springs_FL_Offer_00-1024x521.jpg
// https://d23.com/app/uploads/2024/05/1180w_600h_051724_Pepe_Disney_Springs_FL_Offer_00.jpg
(domain_nowww === "d23.com" && /\/app\/+uploads\//.test(src)) ||
// https://wp-assets.futurism.com/2024/01/Screenshot-2024-01-12-at-10.19.15%E2%80%AFAM-1200x865.png
// https://wp-assets.futurism.com/2024/01/Screenshot-2024-01-12-at-10.19.15%E2%80%AFAM.png
domain === "wp-assets.futurism.com") {
Expand Down Expand Up @@ -52593,10 +52597,36 @@ var $$IMU_EXPORT$$;
// http://www.ojosdecafe.com/img/upload/christopher-nolan-dunkirk.jpg
return src.replace(/\/thumbs\/[0-9]+x[0-9]+_/, "/");
}
if (domain === "img.gestion.pe") {
if (domain === "img.gestion.pe" ||
// http://www.multimedios.com/files/og_thumbnail/uploads/2017/09/04/59ad996ab60d9.jpeg
// http://www.multimedios.com/uploads/2017/09/04/59ad996ab60d9.jpeg
domain_nowww === "multimedios.com" ||
// https://imagenes.heraldo.es/files/image_150_v3/uploads/imagenes/2020/11/12/anya-taylor-joy-como-la-genia-del-ajedrez-beth-harmon-en-la-serie-gambito-de-dama.png
// https://imagenes.heraldo.es/uploads/imagenes/2020/11/12/anya-taylor-joy-como-la-genia-del-ajedrez-beth-harmon-en-la-serie-gambito-de-dama.png
domain === "imagenes.heraldo.es" ||
// thanks to sn3akyb3ar on github: https://github.com/qsniyg/maxurl/issues/1326
// https://www.lavanguardia.com/files/content_image_desktop_filter/uploads/2020/11/27/5fc037b9cc702.jpeg
// https://www.lavanguardia.com/uploads/2020/11/27/5fc037b9cc702.jpeg
domain_nowww === "lavanguardia.com") {
// https://img.gestion.pe/files/ec_article_multimedia_gallery/uploads/2017/11/08/5a03a7dc67e6a.jpeg -- stretched
// https://img.gestion.pe/uploads/2017/11/08/5a03a7dc67e6a.jpeg
return src.replace(/\/files\/[^/]*\/uploads\//, "/uploads/");
return src.replace(/\/files\/+[^/]+\/+uploads\//, "/uploads/");
//return src.replace(/(:\/\/[^/]*\/)files\/[^/]*\/uploads\//, "$1uploads/");
//return src.replace(/\/files\/+image_[^/]+\/+(uploads\/+imagenes\/+)/, "/$1");
}
if (domain === "imagenes.cronica.com.mx" ||
// https://imghandler.cronica.com.mx/files/image_948_465/files/fp/uploads/2024/05/04/6636c21b5dafb.jpeg
// https://imagenes.cronica.com.mx/uploads/2024/05/04/6636c21b5dafb.jpeg
domain === "imghandler.cronica.com.mx") {
// thanks to sn3akyb3ar on github: https://github.com/qsniyg/maxurl/issues/1321
// https://imagenes.cronica.com.mx/files/image_948_465/files/fp/uploads/2024/05/04/6636c21b5dafb.r_d.974-506-4938.jpeg
// https://imagenes.cronica.com.mx/files/image_948_465/files/fp/uploads/2024/05/04/6636c21b5dafb.jpeg
// https://imagenes.cronica.com.mx/uploads/2024/05/04/6636c21b5dafb.jpeg
// https://imagenes.cronica.com.mx/files/content_image_desktop_filter/uploads/2024/05/04/6636c5b6a654c.jpeg
// https://imagenes.cronica.com.mx/uploads/2024/05/04/6636c5b6a654c.jpeg
return src
.replace(/:\/\/[^/]+\/+.*?\/(uploads\/+[0-9]{4}\/+(?:[0-9]{2}\/+){2}[0-9a-f]{5,}\.[a-z]+)(?:[?#].*)?/, "://imagenes.cronica.com.mx/$1")
.replace(/(\/uploads\/+[0-9]{4}\/+(?:[0-9]{2}\/+){2}[0-9a-f]{5,}\.)[^/?#]+\.([a-z]+)(?:[?#].*)?$/, "$1$2");
}
if (domain === "thumb.guucdn.net") {
// https://thumb.guucdn.net/400x225/images.guucdn.net/full/2018/05/29/7426c2a3bfc916d4cad3b9e921b604087c246dfa.jpg
Expand Down Expand Up @@ -59206,11 +59236,6 @@ var $$IMU_EXPORT$$;
// https://movies.celebsnetworth.org/main/images/3918035_Zendaya.jpg
return src.replace(/(:\/\/[^/]*\/main\/)thumbs\//, "$1images/");
}
if (domain_nowww === "multimedios.com") {
// http://www.multimedios.com/files/og_thumbnail/uploads/2017/09/04/59ad996ab60d9.jpeg
// http://www.multimedios.com/uploads/2017/09/04/59ad996ab60d9.jpeg
return src.replace(/(:\/\/[^/]*\/)files\/[^/]*\/uploads\//, "$1uploads/");
}
if (domain === "file.hstatic.net") {
// https://file.hstatic.net/1000162927/file/zendaya-feet-2287006_grande.jpg
// https://file.hstatic.net/1000162927/file/zendaya-feet-2287006.jpg
Expand Down Expand Up @@ -73200,10 +73225,16 @@ var $$IMU_EXPORT$$;
// https://i.imagesup.co/images/1234434_857_123443459593ec693dba.jpg
return src.replace(/\/sz\/+[-0-9]+x[-0-9]+\/+images\/+/, "/images/");
}
if (domain_nosub === "kgimg.com") {
if (domain_nosub === "kgimg.com" ||
// thanks to tathastu871 on discord:
// https://imgessl.kugou.com/custom/150/20230923/20230923205634287593.jpg
// https://imgessl.kugou.com/custom/20230923/20230923205634287593.jpg
// https://imgessl.kugou.com/stdmusic/240/20240515/20240515183102515308.jpg
// https://imgessl.kugou.com/stdmusic/20240515/20240515183102515308.jpg
domain === "imgessl.kugou.com") {
// https://p3fx.kgimg.com/kugouicon/165/20190117/20190117073537290387.jpg
// https://p3fx.kgimg.com//kugouicon/20190117/20190117073537290387.jpg
return src.replace(/(\/kugouicon\/+)[0-9]+\/+([0-9]{8}\/+[0-9]+\.[^/.]*)(?:[?#].*)?$/, "/$1$2");
// https://p3fx.kgimg.com/kugouicon/20190117/20190117073537290387.jpg
return src.replace(/(\/[a-z]+\/+)[0-9]+\/+([0-9]{8}\/+[0-9]+\.[^/.]*)(?:[?#].*)?$/, "$1$2");
}
if (domain === "s.starladder.com") {
// https://s.starladder.com/uploads/user_discipline_logo/5/d/7/6/thumb_270_41f06d6e47bfccf5adc2112d786acc25.jpg
Expand Down Expand Up @@ -93994,11 +94025,6 @@ var $$IMU_EXPORT$$;
// https://vergewiki.com/uploads/biography/2019/10/1/Daphne%20Joy-1569953458567.jpg -- 640x433
return src.replace(/(\/uploads\/+)resize-[a-z]+\/+/, "$1");
}
if (domain === "imagenes.heraldo.es") {
// https://imagenes.heraldo.es/files/image_150_v3/uploads/imagenes/2020/11/12/anya-taylor-joy-como-la-genia-del-ajedrez-beth-harmon-en-la-serie-gambito-de-dama.png
// https://imagenes.heraldo.es/uploads/imagenes/2020/11/12/anya-taylor-joy-como-la-genia-del-ajedrez-beth-harmon-en-la-serie-gambito-de-dama.png
return src.replace(/\/files\/+image_[^/]+\/+(uploads\/+imagenes\/+)/, "/$1");
}
if (domain === "img.mm52.com") {
// https://img.mm52.com/a/anya_taylor_joy/anya_taylor_joy_0379_128px.jpg
// https://img.mm52.com/a/anya_taylor_joy/anya_taylor_joy_0379_620px.jpg
Expand Down Expand Up @@ -102386,20 +102412,6 @@ var $$IMU_EXPORT$$;
// https://photos.psychologytoday.com/3b72b3f7-46cd-11ea-a6ad-06142c356176/6/original.jpeg
return src.replace(/(\/[-0-9a-f]{10,}\/+[0-9a-f]+\/+)[0-9]+x[0-9]+\./, "$1original.");
}
if (domain === "imagenes.cronica.com.mx" ||
// https://imghandler.cronica.com.mx/files/image_948_465/files/fp/uploads/2024/05/04/6636c21b5dafb.jpeg
// https://imagenes.cronica.com.mx/uploads/2024/05/04/6636c21b5dafb.jpeg
domain === "imghandler.cronica.com.mx") {
// thanks to sn3akyb3ar on github: https://github.com/qsniyg/maxurl/issues/1321
// https://imagenes.cronica.com.mx/files/image_948_465/files/fp/uploads/2024/05/04/6636c21b5dafb.r_d.974-506-4938.jpeg
// https://imagenes.cronica.com.mx/files/image_948_465/files/fp/uploads/2024/05/04/6636c21b5dafb.jpeg
// https://imagenes.cronica.com.mx/uploads/2024/05/04/6636c21b5dafb.jpeg
// https://imagenes.cronica.com.mx/files/content_image_desktop_filter/uploads/2024/05/04/6636c5b6a654c.jpeg
// https://imagenes.cronica.com.mx/uploads/2024/05/04/6636c5b6a654c.jpeg
return src
.replace(/:\/\/[^/]+\/+.*?\/(uploads\/+[0-9]{4}\/+(?:[0-9]{2}\/+){2}[0-9a-f]{5,}\.[a-z]+)(?:[?#].*)?/, "://imagenes.cronica.com.mx/$1")
.replace(/(\/uploads\/+[0-9]{4}\/+(?:[0-9]{2}\/+){2}[0-9a-f]{5,}\.)[^/?#]+\.([a-z]+)(?:[?#].*)?$/, "$1$2");
}
if (domain_nowww === "lddb.com") {
// thanks to CetaceanNation on github: https://github.com/qsniyg/maxurl/issues/1320
// https://www.lddb.com/laserdisc/37544/SF098-1168/Back-to-the-Future
Expand Down Expand Up @@ -102487,6 +102499,23 @@ var $$IMU_EXPORT$$;
// https://cache.legacy.net/legacy/images/cobrands/latimes/photos/photo_202617_7602624_1_Photo1_cropped_20190715.jpg
return src.replace(/(\/images\/.*?\.jpg)x\?.*/, "$1");
}
if (domain_nosub === "gloria-jeans.ru" && /^storage-cdn[0-9]*\./.test(domain)) {
// thanks to anonymous for reporting:
// https://storage-cdn10.gloria-jeans.ru/pictures/Haki-sorty-Chino-fit_BSH007490-1_01_1200Wx1200H.jpeg?q=634724
// https://storage-cdn10.gloria-jeans.ru/pictures/Haki-sorty-Chino-fit_BSH007490-1_01_WxH.jpeg - 1885x2399
return src.replace(/(\/pictures\/+[^/]+_)[0-9]*Wx[0-9]*H(\.[a-z]+)(?:[?#].*)?$/, "$1WxH$2");
}
if (domain_nowww === "codingtube.tech") {
// thanks to anonymous for reporting:
// https://codingtube.tech/webimage2/aHR0cHM6Ly9jb2Rpbmd0dWJlLnRlY2gvbmV3c3VybC9pbWd1cGxvYWRzLzE3MDY4MDMyMDguanBn/900/1600/Jackie-Robinson%3A-Breaking-Barriers-and-Paving-the-Way.jpg
// https://codingtube.tech/newsurl/imguploads/1706803208.jpg
// https://codingtube.tech/biography/ogimage/aHR0cHM6Ly9pbWFnZS50bWRiLm9yZy90L3AvdzUwMC8vbVRkQUNtaXRkcndvcjBOcnY1c3IwdTEyM3ZaLmpwZw==/Image.png
// https://image.tmdb.org/t/p/original/mTdACmitdrwor0Nrv5sr0u123vZ.jpg
match = src.match(/\/(aHR0c[^/]+)\//);
if (match) {
return base64_decode(match[1]);
}
}
// -- general rules --
if (src.match(/\/ImageGen\.ashx\?/)) {
// http://www.lookalikes.info/umbraco/ImageGen.ashx?image=/media/97522/nick%20hewer%20-%20mark%20brown.jpeg&width=250&constrain=true
Expand Down Expand Up @@ -114021,6 +114050,7 @@ var $$IMU_EXPORT$$;
var style = get_computed_style(el);
if (!style)
break;
//nir_debug("find_source", "check_visible:", el, style.opacity.toString(), style.visibility);
if (style.opacity.toString().match(/^0(?:\.0*)?$/) ||
(visible_valid && style.visibility === "hidden")) {
return false;
Expand Down

0 comments on commit 462b2b8

Please sign in to comment.