Skip to content

Instantly share code, notes, and snippets.

@masnormen
Last active June 20, 2023 06:18
Show Gist options
  • Save masnormen/72c65fd93008d720f7a2b928b8172934 to your computer and use it in GitHub Desktop.
Save masnormen/72c65fd93008d720f7a2b928b8172934 to your computer and use it in GitHub Desktop.
Block Shopee Affiliate in Twitter (Arc Boost)
/**
* For Arc users: In the Boost editor, add this script into content.js
*/
let timeoutId;
function hideShopeeAffiliates() {
clearTimeout(timeoutId);
timeoutId = setTimeout(function() {
document.querySelectorAll("[data-testid='cellInnerDiv']").forEach(div => {
if (div.innerHTML.includes("shope.ee")) {
div.style.display = "none";
}
});
}, 100);
}
window.addEventListener("scroll", function() {
hideShopeeAffiliates();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment