我怎样才能调用greasemonkey中现有的javascript函数?

发布于 2024-10-09 17:41:07 字数 450 浏览 0 评论 0 原文

可能的重复:
javascript:从 GM 脚本调用嵌入函数

我正在尝试编写一个脚本,该脚本将选择 xbox.com 消息中心中的所有朋友,以便发送 M2AF(向所有朋友发送消息),而无需手动选择所有朋友。

Compose.ToggleFriend('friend1')

当在 URL 栏中运行时(当然以 javascript: 为前缀),这会完美选择friend1。

但是当我尝试将其实现到greasemonkey脚本中时,由于某种原因它无法工作。

Possible Duplicate:
javascript: call an embedded function from a GM script

i'm trying to write a script that will select all friends in the xbox.com message center in order to send a M2AF (message to all friends) without having to manually select all of them.

Compose.ToggleFriend('friend1')

when run in the url bar (prefixed by javascript: of course) this selects friend1 perfectly.

but when i try to implement this into a greasemonkey script it just won't work for some reason.

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

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

发布评论

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

评论(1

自找没趣 2024-10-16 17:41:07

使用这个:

unsafeWindow.Compose.ToggleFriend('friend1');

unsafeWindow 在 GM 中指向全局窗口对象。

Use this:

unsafeWindow.Compose.ToggleFriend('friend1');

unsafeWindow points in GM onto the global window-object.

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