Greasy Fork is available in English.

ExtMan

A Simple Extension Manager

이 스크립트는 직접 설치해서 쓰는 게 아닙니다. 다른 스크립트가 메타 명령 // @require https://update.greasyfork.org/scripts/441384/1027332/ExtMan.js(으)로 포함하여 쓰는 라이브러리입니다.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
개발자
CKylinMC
버전
1.0
생성
2022-03-12
갱신
2022-03-12
라이선스
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: "...",
    //...
});