如何编写用户脚本以便它们在 Opera 和 Greasemonkey 中都能工作
我现在正在研究用户脚本。 我知道 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的 Endless Tweets 用户脚本在 Firefox、WebKit 和 Opera 中同样有效。
我正在使用我自己编写的兼容性脚本它提供了
GM_getValue
、GM_setValue
、GM_xmlhttpRequest
、GM_addStyle
和GM_log
。但是,我不喜欢使用“GM_”前缀,因为用户脚本是跨平台的,因此脚本具有此 API:
检查 工具包在编写用户脚本时提供更多有用的功能。
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
andGM_log
.However, I don't like using the "GM_" prefix since the user script is cross-platform, so the scripts has this API:
Check the rest of the toolkit for more useful functions when writing user scripts.