它在 content_scripts 匹配中不起作用!
有没有其他方法可以实现?
根据Match patterns doc,这是不支持的。
您可以通过使用设置为 的指令来设置matches: "<all_urls>"
和缩小范围来做到这一点。include_globs
*://foo.*/*
但是,请注意它可能不会完全按照您的意愿行事。以下是一些与您的 glob 模式匹配的 URL*://foo.*/*
:
http://foo.com/bar
http://foo.google.com/
http://foo.any.domain.that.startswith.that.subdomain.com/bar/egg
此外,如果你最后有一个固定的字符串,*://foo.*/bar
你可能会遇到更多麻烦:
http://foo.com/bar
http://foo.domain.matched.by.the.star.com/this/path/is/matched/by/the/star/bar