单击链接时,我的content.js未运行。网址发生变化(在点击F5时会运行content.js)。更新的内容位于框架内。
如何在不按F5的情况下触发我的content.js运行?
bool Pop(T* event) { return true; } // Obviously, flesh this out as you wish.
答案 0 :(得分:1)
您可以尝试设置" all_frames"为了在页面中的帧更新时,内容脚本将再次注入,如下所示:
"content_scripts": [
{
"matches": [ "http://www.somePage.com/article*" ],
"all_frames": true,
"js": [ "content.js" ]
}