21 lines
836 B
JavaScript
21 lines
836 B
JavaScript
// ==UserScript==
|
|
// @name Remove QARU from Google search
|
|
// @version 1.1
|
|
// @description Удаляет сайт qaru.site из поисковой выдачи гугла
|
|
// @author DmitriyMX
|
|
// @downloadURL https://gitlab.com/DmitriyMX/remove-qaru-from-google-search/raw/master/userscript.js
|
|
// @updateURL https://gitlab.com/DmitriyMX/remove-qaru-from-google-search/raw/master/userscript.js
|
|
// @match https://google.com/*
|
|
// @match https://google.ru/*
|
|
// @match https://www.google.com/*
|
|
// @match https://www.google.ru/*
|
|
// @grant none
|
|
// ==/UserScript==
|
|
|
|
(function() {
|
|
'use strict';
|
|
|
|
Array.from(document.getElementsByClassName('g'))
|
|
.filter(elm => { return elm.querySelector('a[href*="qaru.site"]') !== null })
|
|
.forEach(elm => { elm.remove() })
|
|
})(); |