Google Chrome 用户脚本无法正常工作

发布于 2024-10-28 20:59:54 字数 281 浏览 4 评论 0原文

我为 Google Chrome 编写了一个小型用户脚本。它工作得很好,直到我调用一个函数 initTimer() 我的脚本中没有这样的函数,但它位于我的用户脚本运行的页面中的脚本中,但无论如何都有一个错误initTimer() 未定义。我尝试编写window.initTimer(),但它说Object [object DOMWindow] has no method 'initTimer'。那么我怎样才能让它发挥作用呢?
提前致谢

I've written a small userscript for Google Chrome. It works pretty fine, until I call a function initTimer() There is no such a function in my script, but it is in a script in the page on which my userscript runs, but anyway there's an error initTimer() is not defined. I've tried to write window.initTimer(), but it says Object [object DOMWindow] has no method 'initTimer'. So how can I make it work?
Thanks in advance

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

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

发布评论

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

评论(1

星星的軌跡 2024-11-04 20:59:55

由于用户脚本通常与浏览器环境的其余部分隔离,因此出于安全原因,用户脚本无法与页面本身上运行的脚本交互,页面上运行的脚本也无法与用户脚本交互。

您必须为此进行脚本注入,方法是在页面本身中创建一个包含您要执行的代码的 script 元素。

var s = document.createElement('script');
s.innerHTML = 'initTimer();';
document.body.appendChild(s);

这个问题可能会或可能不会破坏您的脚本,因为注入的代码将无法直接与沙箱中的代码进行通信,因此您要么必须注入全部您的代码,或者如果需要,可以使用替代方法进行通信。

Because userscripts are typically sandboxed from the rest of the browser environment, userscripts cannot interact with the scripts running on the page itself, nor can scripts running on the page interact with userscripts, for security reasons.

You'll have to do script injection for this, by creating a script element in the page itself containing the code you want to execute.

var s = document.createElement('script');
s.innerHTML = 'initTimer();';
document.body.appendChild(s);

The problem with this, which may or may not break your script, is that the injected code will have no way of communicating directly with the code in the sandbox, so you'd either have to inject all of your code, or use an alternative method to communicate if you need to.

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