Greasy Fork is available in English.

Lib Export Holder

Hold the exports inside the variable.

Dieses Skript sollte nicht direkt installiert werden. Es handelt sich hier um eine Bibliothek für andere Skripte, welche über folgenden Befehl in den Metadaten eines Skriptes eingebunden wird // @require https://update.greasyfork.org/scripts/5259/18732/Lib%20Export%20Holder.js

// ==UserScript==
// @name           Lib Export Holder
// @author         Jixun
// @description    Hold the exports inside the variable.
// @version        1.0
// @copyright      2014+, Jixun
// ==/UserScript==

var exports = {};

// TODO: Logic of callbacks?
var require = function (name) {
    return exports[name];
};