Skip to content

Commit

Permalink
More websites/rules
Browse files Browse the repository at this point in the history
  • Loading branch information
qsniyg committed Oct 1, 2024
1 parent 06ae3c7 commit b849500
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Improvements:

* Various improvements/fixes to existing rules (including YouTube)

Special thanks to nimbuz, remlap, Solus, immewnity, Froktime, billkewl, Broly, fyhtma, vscum, acidzab, sn3akyb3ar, ValiumBear, fireattack for their contributions and reports for this release
Special thanks to nimbuz, remlap, Solus, immewnity, Froktime, billkewl, Broly, fyhtma, vscum, acidzab, sn3akyb3ar, ValiumBear, fireattack, NeverForgotten for their contributions and reports for this release

---

Expand Down
6 changes: 6 additions & 0 deletions src/userscript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33984,6 +33984,12 @@ var $$IMU_EXPORT$$;
// thanks to anonymous for reporting:
// https://www.savannahnow.com/gcdn/authoring/2006/05/27/NSMN/ghows-GA-436437d7-3af2-44b4-a743-3ff643329b91-de026424.jpeg?width=660&height=527&fit=crop&format=pjpg&auto=webp
(domain_nowww === "savannahnow.com" && string_indexof(src, "/gcdn/") >= 0) ||
// thanks to NeverForgotten on discord:
// https://www.fsunews.com/gcdn/authoring/authoring-images/2024/04/06/NSTN/73230257007-usatsi-22955446-168389668-lowres.jpg?width=660&height=491&fit=crop&format=pjpg&auto=webp
(domain_nowww === "fsunews.com" && string_indexof(src, "/gcdn/") >= 0) ||
// thanks to NeverForgotten on discord:
// https://tallahassee.com/gcdn/authoring/authoring-images/2024/02/11/PFSU/72559764007-427120139-18408937945010663-921368414061942147-n.jpg?width=300&height=347&fit=crop&format=pjpg&auto=webp
(domain_nowww === "tallahassee.com" && string_indexof(src, "/gcdn/") >= 0) ||
// thanks to anonymous:
// https://cdn.leonardo.ai/users/b8083275-cc92-4166-b44f-7c73799e22fb/generations/f0d074d0-f8c5-4113-a465-8d472a3343b9/Default_2D_illustration_of_a_25yo_Supergirl_marathon_runner_sh_2.jpg?w=512
(domain === "cdn.leonardo.ai" && /\/generations\//.test(src)) ||
Expand Down
6 changes: 6 additions & 0 deletions userscript.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -31126,6 +31126,12 @@ var $$IMU_EXPORT$$;
// thanks to anonymous for reporting:
// https://www.savannahnow.com/gcdn/authoring/2006/05/27/NSMN/ghows-GA-436437d7-3af2-44b4-a743-3ff643329b91-de026424.jpeg?width=660&height=527&fit=crop&format=pjpg&auto=webp
(domain_nowww === "savannahnow.com" && string_indexof(src, "/gcdn/") >= 0) ||
// thanks to NeverForgotten on discord:
// https://www.fsunews.com/gcdn/authoring/authoring-images/2024/04/06/NSTN/73230257007-usatsi-22955446-168389668-lowres.jpg?width=660&height=491&fit=crop&format=pjpg&auto=webp
(domain_nowww === "fsunews.com" && string_indexof(src, "/gcdn/") >= 0) ||
// thanks to NeverForgotten on discord:
// https://tallahassee.com/gcdn/authoring/authoring-images/2024/02/11/PFSU/72559764007-427120139-18408937945010663-921368414061942147-n.jpg?width=300&height=347&fit=crop&format=pjpg&auto=webp
(domain_nowww === "tallahassee.com" && string_indexof(src, "/gcdn/") >= 0) ||
// thanks to anonymous:
// https://cdn.leonardo.ai/users/b8083275-cc92-4166-b44f-7c73799e22fb/generations/f0d074d0-f8c5-4113-a465-8d472a3343b9/Default_2D_illustration_of_a_25yo_Supergirl_marathon_runner_sh_2.jpg?w=512
(domain === "cdn.leonardo.ai" && /\/generations\//.test(src)) ||
Expand Down

0 comments on commit b849500

Please sign in to comment.