// ==UserScript== // @name GoogleCenzor Pinterest // @include http*://*google.* // @description Цензура результатов pinterest.com в гугле при нажатии клавиши F2 // @grant none // @run-at document-end // @version 0.0.1.20160314154211 // @namespace https://greasyfork.org/users/7568 // @downloadURL none // ==/UserScript== function searcher() { // обработчик var string = "-site:pintеrest.com", // что вставить area = document.getElementById('lst-ib'); // где вставить if (!area.value.match(string)) { // защита от повторных срабатываний area.value = string + " " + area.value; // как вставить }; }; function keydetect(e) { // исполнитель e = window.event ? event : e; if (e.keyCode == 113 ) { // клавиша F2 (она обычно свободна от функций браузера) searcher(); }; }; document.onkeypress = keydetect; // караулить нажатия