pushSettings( options, callback )

Push options to the extension and call the callback function when the extension returns.

The callback is optional. options may contain:

  • subscriptions: [] a list of contributors identifiers to subscribe to.
const options = {
    // ...
    subscriptions: [3] // Maarten SAMSON
    // ...
};
lmem.pushSettings(options, () =>
    console.log('LMEM extension set up!'));
Click the button it to give it a try!