我正在编写一个仅在 URL 匹配时才运行的 Google chrome 扩展程序http://*:8000/*
我的 manifest.json 文件的一部分:
"content_scripts": [{
"matches": ["http://*:8000/*"],
"js" : ["client.js"],
"run_at": "document_end"
}]
尝试打包扩展时出现以下错误。
Invalid value for 'content_scripts[0].matches[0]': Invalid host wildcard.
如果我改变它matches
,<all_url>
它会正确包装并且可以工作,但在每一页上。
我怎样才能让它只使用包含端口 8000 的 URL?