Greasemonkey 脚本版本常量

发布于 2025-01-04 16:55:08 字数 346 浏览 3 评论 0原文

我在元块中定义了用户脚本的版本,如下所示:

// ==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 技术交流群。

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

发布评论

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

评论(1

北斗星光 2025-01-11 16:55:08

如果您升级到 Greasemonkey 0.9.16(刚刚发布),您可以使用全新的 GM_info 对象

您可以将其添加到上面的脚本示例中:

var myVersion = GM_info.script.version; 

console.log ('Version: ', myVersion, myVersion === "5.3.0");

这会将其输出到控制台:

Version: 5.3.0 true 


对于 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:

var myVersion = GM_info.script.version; 

console.log ('Version: ', myVersion, myVersion === "5.3.0");

Which would output this to the console:

Version: 5.3.0 true 


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".

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