如何从页面控制台调用 Chrome 扩展内容脚本中定义的函数?

发布于 2025-01-10 09:15:00 字数 251 浏览 0 评论 0原文

content.js

function foo(){
  console.log('bar');
}
foo();

Manifest

"content_scripts": [{"matches": ["<all_urls>"],"js": ["content.js"]}]

一切正常,并且该函数在页面加载时执行,但是我可以通过控制台调用该函数吗?

content.js

function foo(){
  console.log('bar');
}
foo();

Manifest

"content_scripts": [{"matches": ["<all_urls>"],"js": ["content.js"]}]

Everything works fine and the function executes when the page is loaded but is it possible to call this function through the console by myself?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

江南烟雨〆相思醉 2025-01-17 09:15:00

正如 Ivàn 已经指出的那样,您需要从开发人员工具控制台更改执行上下文。左上角有一个下拉菜单,您可以从那里更改上下文。我附上了屏幕截图以帮助您找到它。

输入图片此处描述

As Ivàn already pointed out, you need to change the context of execution from the Developers Tools' console. In the top left corner there is a dropdown menu, from there you can change the context. I attached a screenshot to help you find it.

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文