以下是我的项目文件列表。
index.html - main extension file
manifest.json
background.html
background.js
content.js
manifest.json
manifest.json
...
"content_scripts": [
{
"all_frames": false,
"js": [
"content.js"
],
"matches": [
"https://www.****.com/vsearch/*"
],
"run_at": "document_end"
}
]
content.js
...
console.log(document.body.scrollHeight);
我需要在content.js中获取特殊网站的scrollHeight。
但是当我加载此扩展程序时,有时会得到index.html的scrollHeight 。
通过使用Chrome开发工具观看content.js,content.js在特殊网站中正确注入。
如何解决此问题?