如何编写用户脚本以便它们在 Opera 和 Greasemonkey 中都能工作

发布于 2024-07-22 03:48:10 字数 323 浏览 7 评论 0原文

我现在正在研究用户脚本。 我知道 Opera 与 Greasemonkey 脚本的许多方面兼容,但与其他方面则不太兼容。

Opera 需要 GM 函数模拟脚本,一开始我但

if(window.opera) {
    var unsafeWindow = window;
}

除此之外,如果我希望我的脚本在两者中运行,我还应该记住哪些事情?

I'm getting into user scripts at the moment. I know Opera is compatible with many aspects of Greasemonkey scripts, but not so much with other aspects.

The GM functions emulation script will be required on Opera, and at the start I have

if(window.opera) {
    var unsafeWindow = window;
}

But beyond that, what other things should I keep in mind if I want my scripts to run in both?

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

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

发布评论

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

评论(1

为你拒绝所有暧昧 2024-07-29 03:48:10

我的 Endless Tweets 用户脚本在 Firefox、WebKit 和 Opera 中同样有效。

我正在使用我自己编写的兼容性脚本它提供了 GM_getValueGM_setValueGM_xmlhttpRequestGM_addStyleGM_log

但是,我不喜欢使用“GM_”前缀,因为用户脚本是跨平台的,因此脚本具有此 API:

getValue()
setValue()
xhr()
addCSS()
log()

检查 工具包在编写用户脚本时提供更多有用的功能。

My Endless Tweets user script works equally well in Firefox, WebKit and Opera.

I'm using a compatibility script I wrote myself which provides GM_getValue, GM_setValue, GM_xmlhttpRequest, GM_addStyle and GM_log.

However, I don't like using the "GM_" prefix since the user script is cross-platform, so the scripts has this API:

getValue()
setValue()
xhr()
addCSS()
log()

Check the rest of the toolkit for more useful functions when writing user scripts.

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