Hi Guys: how to override the value of a {{Variable}}? This is my (stupid) script. The {{Test}} variable is not updated, but when i output it in console it is :-/. What i'm doing wrong? Thanks! (function() { const apiDomain = {{LinkImmo}}; // DO NOT TOUCH const url = https://corsproxy.io/?${encodeURIComponent(apiDomain)};
fetch(url) .then(response => { if (!response.ok) { throw new Error('Network response was not ok: ' + response.statusText); } return response.text(); }) .then(htmlContent => { const pattern = /<script id="NEXT_DATA" type="application/json">\s({.?})\s*</script>/s; const matches = htmlContent.match(pattern); if (!matches) { console.error('JSON content not found in HTML'); return 'Error retrieving data'; } const jsonContent = matches[1];