Created
February 10, 2025 15:04
-
-
Save marclove/cf5bc3f1ca4af6f5a14d2277dfc86008 to your computer and use it in GitHub Desktop.
Hide Instacart Ads
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Hide Instacart Ads | |
// @namespace http://tampermonkey.net/ | |
// @version 2025-02-05 | |
// @description Stop polluting my listings with ads | |
// @author Marc Love | |
// @match https://*.instacart.com/* | |
// @icon https://d2guulkeunn7d8.cloudfront.net/assets/instacart_favicon_48x48-25ac28f848f7cf81a9c8a9aad693a898.png | |
// @run-at document-end | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
function hideAdListItems() { | |
document.querySelectorAll('li').forEach(li => { | |
if (li.querySelector('img[alt="This is an ad..."]')) { | |
li.style.display = 'none'; | |
} | |
}); | |
} | |
// Run function on initial load | |
hideAdListItems(); | |
// Observe for dynamically added elements | |
const observer = new MutationObserver(hideAdListItems); | |
observer.observe(document.body, { childList: true, subtree: true }); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment