// ==UserScript== // @name // @namespace http://tampermonkey.net/ // @version 0.1 // @author agran // @include https://www.google.ru/* // @require http://code.jquery.com/jquery-latest.js // ==/UserScript== /* jshint -W097 */ 'use strict'; var script1 = false; var intervalvar; (function (window, undefined) { if (window.self != window.top) { return; } $( document ).ready(function() { intervalvar = setInterval(Intervalfun, 300); }); })(window); function Intervalfun () { // #spchf - // #spch - // #gsri_ok0 - , // voice - , google if (/voice/.test(window.location.hash) && (($("#spchf").html() == '') && !$("#spch").is(':visible'))) { $("#gsri_ok0").click(); script1 = true; } // $(".r").find("a").attr('href') - // script1 - , URL . if (script1 && $("#spchf").html() != '' && $(".r").find("a").attr('href') != '') { window.open($(".r").find("a").attr('href'), "_self"); clearInterval(intervalvar); intervalvar = setInterval(Intervalfun, 2000); // , . } }
taskkill /F /IM chrome.exe /T > nul
start "chrome-voice" "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" -start-maximized https://www.google.ru/#voice
Source: https://habr.com/ru/post/355138/
All Articles