Chrome 扩展名:content_scripts - 匹配 - 包含
Chrome Extension: content_scripts - matches - contains
我查看了 match patterns documentation,但找不到让 matches
包含文本的方法。
例如如何使其仅适用于包含 test/22
?
的链接
尝试过:
"content_scripts": [
{
"matches": ["https://*/test/22*"]
}
}
还有很多其他人,没有运气。
url 匹配的每个部分都应该定义(方案、主机、路径),您可以使用 *
用于可能包含任何值的部分:
"https://*/*test/22*"
^ ^
host |
path starts here
我查看了 match patterns documentation,但找不到让 matches
包含文本的方法。
例如如何使其仅适用于包含 test/22
?
尝试过:
"content_scripts": [
{
"matches": ["https://*/test/22*"]
}
}
还有很多其他人,没有运气。
url 匹配的每个部分都应该定义(方案、主机、路径),您可以使用 *
用于可能包含任何值的部分:
"https://*/*test/22*"
^ ^
host |
path starts here