Adds links to pirated games on multiple stores
< Feedback on Pirated games on store pages
Love this script, but it likes inputting the annoying symbols in searches, do you mind adding this to all your cases:
appName = appName.replace(/®|™/g, '');
For reference, it should look like this once you've added it:
switch (storePageResult) { case "GOG": appName = document.getElementsByClassName("productcard-basics__title")[0].textContent; appName = appName.replace(/®|™/g, ''); pirateLinks.forEach((e) => { $("button.cart-button")[0].parentElement.parentElement.append(rigGOG(e.url + appName + e.urlSpecial, e.title)) }) break; // cases for other stores... }
Keep up the great work, boss
Edit: Kinda like this icon: https://vectorified.com/images/pirate-bay-icon-28.png | Makes the script feel less bloated too.
Sign in to post a reply.
Love this script, but it likes inputting the annoying symbols in searches, do you mind adding this to all your cases:
For reference, it should look like this once you've added it:
Keep up the great work, boss
Edit: Kinda like this icon: https://vectorified.com/images/pirate-bay-icon-28.png | Makes the script feel less bloated too.