有没有办法从内容脚本调用注入的网站中的函数?
我有一个需要从网站注入一些代码的场景,但遇到一个无法通过内容脚本调用此网站中的功能的问题。
我该怎么做?
例如:
www.xxx.com的功能名称为abc:
function abc() {
// do something
}
我的manifest.json中的定义了下面的content_scripts:
"content_scripts": [{
"matches": ["http://www.xxx.com/*"],
"js": ["my.js"]
}]
my.js中的想要调用下面的abc函数:
abc(); // the error occurred: ReferenceError: abc is not defined
问题是如何在my.js中调用abc函数