PycckuuMeDBeDb
![](http://forum.ru-board.com/board/avatars/Bear_smps.gif)
Member | Редактировать | Профиль | Сообщение | Цитировать | Сообщить модератору VladDr Цитата: Извиняюсь, ошибся :| ShPB Перестал работать скрипт - google_add_buttons.js, можно его подлечить? Код: // ==UserScript== // @name google_add_buttons // @include https://www.google.com/search* // @include https://www.google.ru/search* // ==/UserScript== var alternativeSearch = {'<span style="color:orange">Яндекс': 'https://yandex.ru/yandsearch?text=', '<span style="color:red">YouTube': 'https://www.youtube.com/results?search_query=', '<span style="color:red">Aliexpress': 'https://ru.aliexpress.com/wholesale?catId=0&initiative_id=&SearchText='}; function searchByAlternative(address) { window.open(address + document.body.querySelector('input[title="Поиск"]').value); } (function(){ function addButtons() { var searchForm = document.body.querySelector('.tn') || document.body.querySelector('#ab_options').parentNode; for (var name in alternativeSearch) { searchForm.insertAdjacentHTML('beforeend', '<div style="display:inline-block; padding:14px 7px; font:14px Consolas; cursor:pointer" onclick="searchByAlternative(\''+alternativeSearch[name]+'\')">' + name + '</div>'); } } window.addEventListener('DOMContentLoaded', addButtons); })(); |
|