A Windows XP help forum. PCbanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » PCbanter forum » Windows 10 » Windows 10 Help Forum
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Speaking of Firefox



 
 
Thread Tools Rate Thread Display Modes
  #1  
Old December 5th 18, 07:29 PM posted to alt.comp.os.windows-10
Keith Nuttle
external usenet poster
 
Posts: 1,844
Default Speaking of Firefox

I would like to find an addon that would allow me to search multiple
terms at the same time.

If I did a search and it returned 100 surnames, I would like to search
the returned list for jones, doe, and smith in one pass. Yes I could
run individual search for each jones, doe, smith but an addon that would
do all three in one pass would be nicer

As an example If I do a seas of an online database and it returns 50
different matches, I would like to search the returned matches for for
or five specific terms.

--
2018: The year we learn to play the great game of Euchre
Ads
  #2  
Old December 5th 18, 07:57 PM posted to alt.comp.os.windows-10
Paul[_32_]
external usenet poster
 
Posts: 11,873
Default Speaking of Firefox

Keith Nuttle wrote:
I would like to find an addon that would allow me to search multiple
terms at the same time.

If I did a search and it returned 100 surnames, I would like to search
the returned list for jones, doe, and smith in one pass. Yes I could
run individual search for each jones, doe, smith but an addon that would
do all three in one pass would be nicer

As an example If I do a seas of an online database and it returns 50
different matches, I would like to search the returned matches for for
or five specific terms.


Is this a feature you found on a particular web site ?

Are you referring to some results that came back
from a Google search ?

Provide a picture link, if it helps establish what
you're seeing on the screen, so we can understand the
context more precisely.

One way to do it, on a particular web site, is to use
Tampermonkey or Greasemonkey, and add code whenever that
web page is visited. But this requires the skills of
a programmer, to gain maximum benefit. People use this
for doing stuff, like removing unnecessary decorations
or popups from some sites, rendering them more readable.

Paul
  #3  
Old December 6th 18, 01:48 AM posted to alt.comp.os.windows-10
Keith Nuttle
external usenet poster
 
Posts: 1,844
Default Speaking of Firefox

On 12/5/2018 2:57 PM, Paul wrote:
Keith Nuttle wrote:
I would like to find an addon that would allow me to search multiple
terms at the same time.

If I did a search and it returned 100 surnames, I would like to search
the returned list for jones, doe, and smith in one pass.Â* Yes I could
run individual search for each jones, doe, smith but an addon that
would do all three in one pass would be nicer

As an example If I do a seas of an online database and it returns 50
different matches,Â* I would like to search the returned matches for
for or five specific terms.


Is this a feature you found on a particular web site ?

Are you referring to some results that came back
from a Google search ?

Provide a picture link, if it helps establish what
you're seeing on the screen, so we can understand the
context more precisely.

One way to do it, on a particular web site, is to use
Tampermonkey or Greasemonkey, and add code whenever that
web page is visited. But this requires the skills of
a programmer, to gain maximum benefit. People use this
for doing stuff, like removing unnecessary decorations
or popups from some sites, rendering them more readable.

Â*Â* Paul

Specific the need arises on Ancestry when looking at DNA matches. When
you look at an online tree of a person who is a DNA match, all of the
surnames in the Match's tree are listed. This can be quite a few.

Rather than search the web presentation for each surname; it would be
nice to put your surnames in a search string and it would return hits on
all of the surnames in the Match's tree.

--
2018: The year we learn to play the great game of Euchre
  #4  
Old December 6th 18, 02:56 AM posted to alt.comp.os.windows-10
Paul[_32_]
external usenet poster
 
Posts: 11,873
Default Speaking of Firefox

Keith Nuttle wrote:
On 12/5/2018 2:57 PM, Paul wrote:
Keith Nuttle wrote:
I would like to find an addon that would allow me to search multiple
terms at the same time.

If I did a search and it returned 100 surnames, I would like to
search the returned list for jones, doe, and smith in one pass. Yes
I could run individual search for each jones, doe, smith but an addon
that would do all three in one pass would be nicer

As an example If I do a seas of an online database and it returns 50
different matches, I would like to search the returned matches for
for or five specific terms.


Is this a feature you found on a particular web site ?

Are you referring to some results that came back
from a Google search ?

Provide a picture link, if it helps establish what
you're seeing on the screen, so we can understand the
context more precisely.

One way to do it, on a particular web site, is to use
Tampermonkey or Greasemonkey, and add code whenever that
web page is visited. But this requires the skills of
a programmer, to gain maximum benefit. People use this
for doing stuff, like removing unnecessary decorations
or popups from some sites, rendering them more readable.

Paul

Specific the need arises on Ancestry when looking at DNA matches. When
you look at an online tree of a person who is a DNA match, all of the
surnames in the Match's tree are listed. This can be quite a few.

Rather than search the web presentation for each surname; it would be
nice to put your surnames in a search string and it would return hits on
all of the surnames in the Match's tree.


Does "Save As" "Web Page Complete" work on a site like that ?

I'm just trying to think of ways you could scrape the data.
The data you want, might not actually be stored in HTML
code, but done some other (useless) way.

There might be commercial offerings that expose more
of the data you seek, but they also require sharing your
DNA with them.

Maybe slow and steady is the way to go.

Paul
  #5  
Old December 6th 18, 05:22 AM posted to alt.comp.os.windows-10
Ralph Fox
external usenet poster
 
Posts: 474
Default Speaking of Firefox

On Wed, 5 Dec 2018 14:29:20 -0500, Keith Nuttle wrote:

I would like to find an addon that would allow me to search multiple
terms at the same time.

If I did a search and it returned 100 surnames, I would like to search
the returned list for jones, doe, and smith in one pass. Yes I could
run individual search for each jones, doe, smith but an addon that would
do all three in one pass would be nicer

As an example If I do a seas of an online database and it returns 50
different matches, I would like to search the returned matches for for
or five specific terms.



I haven't used it myself, but the "Regex Search" extension
should allow you to do this.
https://addons.mozilla.org/en-US/firefox/addon/regexsearch/

A basic regex (regular expression) to search for Tom, Dick, or Harry,
all in one pass, would look like this

Tom|Dick|Harry

For help with regex in the Regex Search extension, see
https://github.com/Mohd-PH/RegexSearch/blob/master/help.md


--
Kind regards
Ralph
  #6  
Old December 6th 18, 11:31 AM posted to alt.comp.os.windows-10
Jesper Kaas
external usenet poster
 
Posts: 74
Default Speaking of Firefox

On Wed, 5 Dec 2018 14:29:20 -0500, Keith Nuttle
wrote:

I would like to find an addon that would allow me to search multiple
terms at the same time.

If I did a search and it returned 100 surnames, I would like to search
the returned list for jones, doe, and smith in one pass. Yes I could
run individual search for each jones, doe, smith but an addon that would
do all three in one pass would be nicer

As an example If I do a seas of an online database and it returns 50
different matches, I would like to search the returned matches for for
or five specific terms.

Could this be used: https://codingislove.com/http-requests-excel-vba/
I never have used it, but it looks interesting.
--
Jesper Kaas -
 




Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off






All times are GMT +1. The time now is 11:04 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 PCbanter.
The comments are property of their posters.