Greasy Fork is available in English.

GMCommonAPI.js

GM Common API (GMC) is a simple library designed for easily adding Greasemonkey 4 compatibilty to existing userscripts

此脚本不应被直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.greasyfork.org/scripts/34527/751210/GMCommonAPIjs.js

脚本作者
Stig Nygaard
版本
0.0.1.20171216143348
创建日期
2017-10-25
最近更新
2017-12-16
许可证
暂无

GM Common API (GMC) is a simple library designed for easily adding Greasemonkey 4 compatibility to existing userscripts.

With the introduction of the Greasemonkey 4 WebExtension, the classic GM_* "synchronous" API is replaced with a new GM.* "asynchronous API". The features of the new API in Greasemonkey 4 (GM4) are very similar to the classic API, but the functions are asynchronous. This means you might need to (learn asynchronous programming and) do some refactoring of your existing userscripts to make use of the new API in GM4.

As an alternative to refactoring your code, GMC offers a "synchronous subset" of the GM APIs, which works with scripts running in both the new GM4, in the older versions of Greasemonkey, and in other userscript managers like Tampermonkey and Violentmonkey. Where APIs are supported in GMC, no refactoring of your script is needed; Often all you need to do, is to add a @require statements in meta-block of your userscript, and replace the use of GM_* methods with equivalent GMC.* methods in your code.

For more info, see the GitHub repository or the source code.

/Stig