Remove Sponsors Ads from Google Search results
// ==UserScript==
// @name Google Search No Sponsors
// @namespace https://stay.app/
// @version 0.1
// @description Remove Sponsors Ads from Google Search results
// @author Z3r0CooL
// @match *://*google.com/search*
// @license Apache-2.0
// ==/UserScript==
(function () {
'use strict';
const container = document.getElementById('tads');
if (container) container.remove();
})();