Are you sure you want to go to an external site to donate a monetary value?
WARNING: Some countries laws may supersede the payment processors policy such as the GDPR and PayPal. While it is highly appreciated to donate, please check with your countries privacy and identity laws regarding privacy of information first. Use at your utmost discretion.
I can not find the script in the search in the chrome yellow paint to match all words
Where did you want your search terms to be highlighted:
Re: @jscher2000 :
Everywhere in the village when searching
[url=http://radikal.ru][img]http://s018.radikal.ru/i508/1612/7d/599279b2bafe.jpg[/img][/url]
something like that
I don't recognize how that was done. Do you know how that image was generated?
If you had to write code to match the words manually, some of the methods in the following script might be useful: https://greasyfork.org/en/scripts/13007-text-highlight-and-seek/code
Re: @jscher2000:
I do not know how to write himself.
It does not work for me
How did you generate the screen shot? Is that what you have now? Add-on?
Re: @jscher2000 :
This extension is now Multi-highlight
I used to be a script for Tampermonkey He singled out the found words yellow. after reinstalling the browser I can not find the name can not remember
Do you think you installed it from this site, or from the old userscripts.org?
I don't think these old scripts were necessarily compatible with Chrome/Tampermonkey but could be a starting point for someone wanting to write a new script for you:
Search Terms Highlighter
http://userscripts-mirror.org/scripts/show/53098
Google Keyword Highlight
http://userscripts-mirror.org/scripts/show/52033
By the way, the matches in the cite (green URL) and in the snippet below it are bolded by Google, so it's easy to inject a style rule into the page to highlight those bolded terms.
If you use Stylish / userContent.css:
div.g cite b, div.g span.st em { background-color: #ff0 !important; }
If you prefer a userscript:
var r = "div.g cite b, div.g span.st em {background-color: #ff0 !important;}"; var s = document.createElement("style"); s.appendChild(document.createTextNode(r)); document.body.appendChild(s);
But real code would be required to highlight the matching words in the large headline, since Google does not mark those in any way.
You could try this script:
https://openuserjs.org/scripts/jscher2000/Google_SERP_Keyword_Highlighter
It's a bit rough due to various things Google does with its matching (singular/plural, synonyms, etc.).
If you don't actually want all your matches yellow, edit line 20 to
var yellowonly = false;
I didn't build a whole array of colors, so if you have a lot of query terms, a lot of them will be yellow anyway.
It's a start. Someone can take it over and improve on it.
Re: @jscher2000 :
Thank you!!!! It is suitable for me. I thank you !!!
Re: @kz.faraongmail.com :
Another question can be? How to add it to https://yandex.ru/
In google it works ++++!!!!!
Okay, please try version 0.6 for yandex.ru
Re: @jscher2000 :
Amazing work!!!
Line 58
if (qa[j].split("=")[0] == "text" && location.hostname == "yandex.ru"){ // Yandex
If the change to nigma.ru
It will have the same effect, For me, this 3 search
Thanks again!!! Hopefully this will be helpful to many. You really helped me.
Sure, look for a new version 0.7.
Re: @jscher2000 :
It does not work on nigma.ru
I tried to fully address www.nigma.ru also no
Oh, you use it with www? That's an important detail because line 62 did not allow for that. Please see the updated version, 0.7.1.
By the way, in case your URL has different parameters, this is the one I got:
http://www.nigma.ru/?s=tampermonkey+user+scripts&t=web&rg=t%3D0_c%3D%D0%A0%D0%BE%D1%81%D1%81%D0%B8%D1%8F_&rg_view=&yn=1&gl=1&rm=1&ms=1&yh=1&av=1&nm=1&lang=all&srt=0&sf=1
In order to extract your query terms, the script is looking for the first parameter: s=tampermonkey+user+scripts
Re: @jscher2000 :
Thank you for the work done!!!!