0

它在 content_scripts 匹配中不起作用!

有没有其他方法可以实现?

4

2 回答 2

0

根据Match patterns doc,这是不支持的。

于 2013-05-17T13:41:43.240 回答
0

您可以通过使用设置为 的指令来设置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
于 2013-05-17T13:55:46.387 回答