我对javascript很新,我正在尝试创建一个与我学校网站一起使用的Chrome扩展程序,但我被困在这里, 这是manifest.json
{
"name": "APPNAME",
"version": "1.0",
"manifest_version": 2,
"description": "Desc",
"icons": {
"16": "assets/icon_16.png",
"128": "assets/icon_128.png"
},
"content_scripts": [
{
"matches": ["https://public.my.wisc.edu/*"],
"js": ["main.js"]
}
]
}
这是我正在尝试运行的简单脚本,
document.onreadystatechange = function () {
if (document.readyState === 'complete') {
alert("HELLO");
}
};
这似乎不适用于上面的网址。 有没有办法跟踪文档onreadystatechange属性?