我怎样才能调用greasemonkey中现有的javascript函数?
可能的重复:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用这个:
unsafeWindow 在 GM 中指向全局窗口对象。
Use this:
unsafeWindow points in GM onto the global window-object.