Greasy Fork is available in English.

Hide pinterest.com in Google

Hides pinterest.com images in Google searches

// ==UserScript==
// @name         Hide pinterest.com in Google
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Hides pinterest.com images in Google searches
// @author       SoWhy
// @match        https://www.google.com/search?*
// @grant        none
// @require https://code.jquery.com/jquery-3.4.1.min.js
// ==/UserScript==

$( "div.isv-r:contains('pinterest.com')" ).css( "display", "none" );