latestBGonStripChat

Enable users to seamlessly access and appreciate the latest backgrounds on SC.

  1. // ==UserScript==
  2. // @name latestBGonStripChat
  3. // @namespace http://carllx.com/
  4. // @version 0.1.5.2
  5. // @description Enable users to seamlessly access and appreciate the latest backgrounds on SC.
  6. // @author carllx
  7. // @match https://stripchat.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=stripchat.com
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function () {
  13. "use strict";
  14. // function replaceTimestamp(url) {
  15. // const timestampRegex = /\d+(?=\/)/;
  16. // const newTimestamp = Math.floor(Date.now() / 1000) - 19;
  17. // return url.replace(timestampRegex, newTimestamp);
  18. // }
  19.  
  20. function updateSrcInHTML() {
  21. const users = [];
  22. // console.error(`users.length:`);
  23. const aWrapperElements = document.querySelectorAll(".model-list-item-link");
  24. const viewportWidth = window.innerWidth;
  25. const viewportHeight = window.innerHeight;
  26. aWrapperElements.forEach((wrapElement) => {
  27. const rect = wrapElement.getBoundingClientRect();
  28.  
  29. const isInView =
  30. rect.width > 0 &&
  31. rect.height > 0 &&
  32. rect.top >= 0 &&
  33. rect.bottom <= viewportHeight &&
  34. rect.left >= 0 &&
  35. rect.right <= viewportWidth;
  36. if (isInView) {
  37. const imgElement = wrapElement.querySelector(
  38. ".image-background"
  39. );
  40. const src = imgElement.getAttribute("src");
  41.  
  42. const usernamePath = wrapElement.getAttribute("href"); //'/MiaBakker'
  43.  
  44. // XXXXXXXXXXXX
  45. users.push({ n: usernamePath, el: imgElement });
  46. // XXXXXXXXXXXX
  47. }
  48. });
  49. // XXXXXXXXXXXX
  50. console.log(`users.length:${users.length}`);
  51. getUserofCam(users);
  52. // XXXXXXXXXXXX
  53. }
  54. function executeFunctionEverySec(fn , sec) {
  55. const intervalId = setInterval(fn, sec);
  56. const eventListener = () => {
  57. clearInterval(intervalId);
  58. document.removeEventListener("stop", eventListener);
  59. // Additional code to handle the 'stop' event if needed
  60. };
  61. document.addEventListener("stop", eventListener);
  62. }
  63. // return fetch(`https://stripchat.com/api/front/v2/models/username${n}/cam`)
  64.  
  65. function getUserofCam(users) {
  66. // users : [ {n:, el:},]
  67.  
  68. const fetchUserData = async (user) => {
  69. const { n, el } = user;
  70. const resolvedEl = await Promise.resolve(el);
  71. return fetch(`https://stripchat.com/api/front/v2/models/username/${n}/cam`)
  72. .then((res) => {
  73. if (res.ok) {
  74. return res.json();
  75. }
  76. throw new Error("Something went wrong");
  77. })
  78. .then((ob) => {
  79. const snapshotTimestamp = ob.user.user.snapshotTimestamp;
  80. // https://img.strpst.com/thumbs/1695366450/104138876_webp
  81. const orgSrc = resolvedEl.getAttribute("src");
  82. const timestampRegex = /\d+(?=\/)/;
  83. // debugger
  84. const newSrc = orgSrc.replace(timestampRegex, snapshotTimestamp);
  85. resolvedEl.setAttribute("src", newSrc);
  86.  
  87. resolvedEl.onerror = function () {
  88. this.onerror = null;
  89. this.src = orgSrc;
  90. this.classList.remove('image-background__image--is-hidden')
  91. console.log(this)
  92. };
  93. return true;
  94. });
  95. };
  96.  
  97. Promise.all(users.map(fetchUserData)).then((results) => {
  98. console.log("ok"); // log name property of first user
  99. });
  100. }
  101.  
  102. executeFunctionEverySec(updateSrcInHTML , 3000);
  103.  
  104. })();