[Looking for maintainer] - Google Container isolates your Google activity from the rest of your web activity in order to prevent Google from tracking you outside of the Google website via third party cookies.
This PR adds a new domain to the list of Google Services and respects Ignore search pages option too that will cause a conflict because of this new addition.
search.google.com/search-console is a google services domain for webmasters
I didn't add it as search.google.com because that redirects to google homepage.
As per the current behavior any pathname that starts with /search will be included in ignore or allow list based on the user preference of Ignore search pages as the new domain's pathname starts with /search
So this fix to the isSearchpageURL makes sure that its
a) pathname exactly matches /search
b) has something in search params.
This PR adds a new domain to the list of Google Services and respects
Ignore search pages
option too that will cause a conflict because of this new addition.search.google.com/search-console is a google services domain for webmasters I didn't add it as
search.google.com
because that redirects to google homepage.As per the current behavior any pathname that starts with
/search
will be included in ignore or allow list based on the user preference ofIgnore search pages
as the new domain's pathname starts with/search
So this fix to the isSearchpageURL makes sure that its a) pathname exactly matches
/search
b) has something insearch
params.Closes #124