code here: this code is to change views loves and hearts on your project (inspect tab) document.querySelectorAll('span, div, p').forEach(element => { // This checks if the text box contains a comma-separated or raw number let cleanText = element.innerText.trim().replace(/,/g, ''); if (cleanText && !isNaN(cleanText) && cleanText.length > 0) { // It injects your custom fake view number here element.innerText = "9,999,999"; } }); (note: it only shows for you) follow count (only shows for you): document.querySelectorAll('h4').forEach(header => { if (header.innerText.includes("Followers")) { header.innerText = "Followers (99,999)"; } if (header.innerText.includes("Following")) { header.innerText = "Following (0)"; } });