Greasemonkey 脚本版本常量
我在元块中定义了用户脚本的版本,如下所示:
// ==UserScript==
// @name Script Name
// @description Something about what this script does
// @include http://www.example.com/
// @version 5.3.0
// @run-at document-end
// ==/UserScript==
有没有办法获取我定义的版本号?我希望能够执行类似 alert("This is version " + SCRIPT_VERSION + ".");
的操作。
I defined the version of my user script in the meta block, like this:
// ==UserScript==
// @name Script Name
// @description Something about what this script does
// @include http://www.example.com/
// @version 5.3.0
// @run-at document-end
// ==/UserScript==
Is there a way to get the version number that I defined? I want to be able to do something like alert("This is version " + SCRIPT_VERSION + ".");
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您升级到 Greasemonkey 0.9.16(刚刚发布),您可以使用全新的
GM_info
对象 。您可以将其添加到上面的脚本示例中:
这会将其输出到控制台:
对于 0.9.16 之前的 GM 版本,您必须以
@resource< 的形式读取自己的脚本/code> 或使用“了解您自己的元数据”中所示的封装技术。
If you upgrade to Greasemonkey 0.9.16 (just released), you can use the brand new
GM_info
object.You can add this to your script example, above:
Which would output this to the console:
For GM versions prior to 0.9.16, you'd have to either read your own script in as a
@resource
or use encapsulation techniques as shown in "Knowing Your Own Metadata".