我正在制作Chrome扩展程序,但我很难找到如何在我想要的页面上运行我的content.js。
我的 manifest.json 有这个:
"content_scripts": [{
"js": ["content.js"],
"matches": ["https://www.example.com/*"]
}]
现在我知道这将允许https://www.example.com/(any_path)运行content.js,但是,我正在尝试将其设置为https://www.example.com。*,例如我想要对https://www.example.com.au和https://www.example.com.uk等工作的扩展程序是否可以执行此操作?
我已尝试在manifest.js 中执行此操作,但它似乎无法正常工作:
"content_scripts": [{
"js": ["content.js"],
"matches": ["https://www.example.com.*"]
}]
任何建议都表示赞赏。
由于