// ==UserScript== // @name custom unsplash // @match https://unsplash.com/* // @grant none // @run-at document-end // ==/UserScript== (function() { 'use strict'; document.querySelectorAll('[data-ad="true"]').forEach(function(e){ console.log("AAAAAAAA"); e.remove(); }); })(); GM_addStyle(` div[data-ad="true"], div[data-test="AffiliatesGrid-Content"] { visibility: hidden; width: 0; height: 0; } `) const text = 'Unsplash+'; for (const container of document.querySelectorAll('figure')) { if (container.textContent.includes(text)) { container.remove(); } console.log(container); }