Skip to content

Commit

Permalink
Merge branch 'master' of qsniyg.github.com:qsniyg/maxurl
Browse files Browse the repository at this point in the history
  • Loading branch information
qsniyg committed Jan 19, 2024
2 parents d64f021 + 0e562fa commit 46975cc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/userscript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33546,7 +33546,10 @@ var $$IMU_EXPORT$$;
// thanks to sn3akyb3ar on github: https://github.com/qsniyg/maxurl/issues/1062
// https://www.voguehk.com/media/2022/08/VHK-041-Kim-Tae-Ri-Cover-02-1440x1800.jpg
// https://www.voguehk.com/media/2022/08/VHK-041-Kim-Tae-Ri-Cover-02.jpg
(domain_nowww === "voguehk.com" && /\/media\//.test(src))
(domain_nowww === "voguehk.com" && /\/media\//.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"
) {
src = src.replace(/-[0-9]+x[0-9]+\.([^/]*(?:[?#].*)?)$/, ".$1");
}
Expand Down
5 changes: 4 additions & 1 deletion userscript.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -30725,7 +30725,10 @@ var $$IMU_EXPORT$$;
// thanks to sn3akyb3ar on github: https://github.com/qsniyg/maxurl/issues/1062
// https://www.voguehk.com/media/2022/08/VHK-041-Kim-Tae-Ri-Cover-02-1440x1800.jpg
// https://www.voguehk.com/media/2022/08/VHK-041-Kim-Tae-Ri-Cover-02.jpg
(domain_nowww === "voguehk.com" && /\/media\//.test(src))) {
(domain_nowww === "voguehk.com" && /\/media\//.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") {
src = src.replace(/-[0-9]+x[0-9]+\.([^/]*(?:[?#].*)?)$/, ".$1");
}
if ((domain === "store.pinseyun.com" && string_indexof(src, "/uploads/") >= 0) ||
Expand Down

0 comments on commit 46975cc

Please sign in to comment.