Skip to content

Commit

Permalink
Support another playstation domain
Browse files Browse the repository at this point in the history
  • Loading branch information
qsniyg committed Jan 23, 2025
1 parent 383fb1e commit 5850d48
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Bugfixes:

* Fix backslash escapes breaking parsing for format strings

Special thanks to arlenestrigger, fyhtma, BlindWanda, chr1sx, James Joint, musicianjam888, Velocidensity, Egor Popov, Froktime for their contributions and reports for this release
Special thanks to arlenestrigger, fyhtma, BlindWanda, chr1sx, James Joint, musicianjam888, Velocidensity, Egor Popov, Froktime, siloricity for their contributions and reports for this release

---

Expand Down
3 changes: 3 additions & 0 deletions src/userscript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33366,6 +33366,9 @@ var $$IMU_EXPORT$$;
(domain === "store.playstation.com" && string_indexof(src, "/image?") >= 0) ||
// https://blog.us.playstation.com/tachyon/2020/04/49811271288_81f0c02714_k.jpg?resize=1088,612&crop_strategy=smart&zoom=1.5
(domain_nosub === "playstation.com" && /^blog\./.test(domain)) ||
// thanks to siloricity on discord:
// https://image.api.playstation.com/vulcan/img/rnd/202010/2319/CByG3NffVx7xnvzUbqu57slz.jpg?w=780&thumb=false
domain === "image.api.playstation.com" ||
// https://www.snopes.com/tachyon/2021/01/mcdonalds-curved-glass.jpg?resize=1200,630&quality=65
(domain_nowww === "snopes.com" && string_indexof(src, "/tachyon/") >= 0) ||
// https://images.interactives.dk/cdn-connect/98f5b7864bfb4efba3e65b9d0c983122.jpg?auto=compress&ch=Width%2CDPR&ixjsv=2.2.4&w=750
Expand Down
3 changes: 3 additions & 0 deletions userscript.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -30467,6 +30467,9 @@ var $$IMU_EXPORT$$;
(domain === "store.playstation.com" && string_indexof(src, "/image?") >= 0) ||
// https://blog.us.playstation.com/tachyon/2020/04/49811271288_81f0c02714_k.jpg?resize=1088,612&crop_strategy=smart&zoom=1.5
(domain_nosub === "playstation.com" && /^blog\./.test(domain)) ||
// thanks to siloricity on discord:
// https://image.api.playstation.com/vulcan/img/rnd/202010/2319/CByG3NffVx7xnvzUbqu57slz.jpg?w=780&thumb=false
domain === "image.api.playstation.com" ||
// https://www.snopes.com/tachyon/2021/01/mcdonalds-curved-glass.jpg?resize=1200,630&quality=65
(domain_nowww === "snopes.com" && string_indexof(src, "/tachyon/") >= 0) ||
// https://images.interactives.dk/cdn-connect/98f5b7864bfb4efba3e65b9d0c983122.jpg?auto=compress&ch=Width%2CDPR&ixjsv=2.2.4&w=750
Expand Down

0 comments on commit 5850d48

Please sign in to comment.