At the moment I've got it like this:
"matches": ['https://google.com/*', 'http://google.com/*']
Is there any way to combine these 2 URLs into one allowing both https and http?
(Manifest V3)
At the moment I've got it like this:
"matches": ['https://google.com/*', 'http://google.com/*']
Is there any way to combine these 2 URLs into one allowing both https and http?
(Manifest V3)
According to https://developer.chrome.com/docs/extensions/mv2/match_patterns/ you could do:
"matches": ["*://google.com/*"]
Copyright © 2021 Jogjafile Inc.
*
is for both http and https.The real address of
google.com
iswww.google.com
(Chrome hides thewww
part by default)Use double quotes.