ExtMan

A Simple Extension Manager

Ce script ne devrait pas être installé directement. C'est une librairie créée pour d'autres scripts. Elle doit être inclus avec la commande // @require https://update.greasyfork.org/scripts/441384/1027332/ExtMan.js

Auteur
CKylinMC
Version
1.0
Créer
2022-03-12
Mis à jour
2022-03-12
Licence
GPLv3 License

独立用户脚本做附加模块框架。Host和Module都需要引用此脚本。

Host:

const ExtMan = unsafeWindow.getExtMan();
const ext = new ExtMan({
    name: "YourHostScriptNamespace",
    requiredProperties:{// specify this for module precheck or leave this empty object to skip precheck
        name:"string",
        version:"string",
        onhook: (prop, fullmodule, propname)=>true // custom checker
    }
});
ext.getAllModules();// get all registered module with precheck, return an array

External Module:

const ExtMan = unsafeWindow.getExtMan();
const ext = new ExtMan({
    name: "TheNamespaceOfYourHostScript",
});
ext.registerModule({// register your module with object like this. Make sure your module script load before the host script!
    name: "...",
    //...
});