Skip to content

Commit

Permalink
Support steam chat (fixes #1314)
Browse files Browse the repository at this point in the history
  • Loading branch information
qsniyg committed Apr 23, 2024
1 parent 1d68462 commit befd3d9
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 @@ -9,7 +9,7 @@ Bugfixes:
* Fix browser download replacing current page on non-same-origin URLs
* Fix GM_download headers for Tampermonkey and Violentmonkey

Special thanks to fireattack, nimbuz, Froktime, fyhtma, SakalliTavernaci, TheLastZombie, oifj34f34f, Solus, sn3akyb3ar, n0stal6ic, nyahgust, vscum, TristanWasTaken, BlindWanda, SUPER7X for their contributions and reports for this release
Special thanks to fireattack, nimbuz, Froktime, fyhtma, SakalliTavernaci, TheLastZombie, oifj34f34f, Solus, sn3akyb3ar, n0stal6ic, nyahgust, vscum, TristanWasTaken, BlindWanda, SUPER7X, n0099 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 @@ -33083,6 +33083,9 @@ var $$IMU_EXPORT$$;
// thanks to anonymous for reporting:
// https://cdn.hfashionmall.com/goods/THBR/23/12/06/GM0123120671139_9_ORGINL_1707960601850.jpg?RS=600x600&AR=0&CS=400x600
domain === "cdn.hfashionmall.com" ||
// thanks to n0099 on github: https://github.com/qsniyg/maxurl/issues/1314
// https://steamcommunity-a.akamaihd.net/chat/image/ytVLh2iuegcBz8cmwozQlRfu4DI9bkP3nqrIsC2towJsb9Vg8-QAX71yzn1RAw/share_image.jpg?s=256x140
(domain === "steamcommunity-a.akamaihd.net" && string_indexof(src, "/image/") >= 0) ||
// thanks to MinuteAd8502 on github: https://github.com/qsniyg/maxurl/issues/874
// https://img01.ztat.net/article/spp-media-p1/369ffb094cae4443bee45519929dddb8/4269d8d79cfe418888fdc155bf1a8e2e.jpg?imwidth=762
// https://img01.ztat.net/article/spp-media-p1/369ffb094cae4443bee45519929dddb8/4269d8d79cfe418888fdc155bf1a8e2e.jpg -- 1801x2600
Expand Down
3 changes: 3 additions & 0 deletions userscript.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -30240,6 +30240,9 @@ var $$IMU_EXPORT$$;
// thanks to anonymous for reporting:
// https://cdn.hfashionmall.com/goods/THBR/23/12/06/GM0123120671139_9_ORGINL_1707960601850.jpg?RS=600x600&AR=0&CS=400x600
domain === "cdn.hfashionmall.com" ||
// thanks to n0099 on github: https://github.com/qsniyg/maxurl/issues/1314
// https://steamcommunity-a.akamaihd.net/chat/image/ytVLh2iuegcBz8cmwozQlRfu4DI9bkP3nqrIsC2towJsb9Vg8-QAX71yzn1RAw/share_image.jpg?s=256x140
(domain === "steamcommunity-a.akamaihd.net" && string_indexof(src, "/image/") >= 0) ||
// thanks to MinuteAd8502 on github: https://github.com/qsniyg/maxurl/issues/874
// https://img01.ztat.net/article/spp-media-p1/369ffb094cae4443bee45519929dddb8/4269d8d79cfe418888fdc155bf1a8e2e.jpg?imwidth=762
// https://img01.ztat.net/article/spp-media-p1/369ffb094cae4443bee45519929dddb8/4269d8d79cfe418888fdc155bf1a8e2e.jpg -- 1801x2600
Expand Down

0 comments on commit befd3d9

Please sign in to comment.