InstallDeveloperPlugin

InstallDeveloperPlugin(configUrl) → { boolean }

Installs a plugin by the URL to the plugin config.

Parameters:

Name Type Description
configUrl string

The URL to the plugin config.json for installing.

Returns:

Type
boolean

Example

Copy code
window.Asc.plugin.executeMethod ("InstallDeveloperPlugin", ["https://example.com/plugin/config.json"], function (result) {
    postMessage (JSON.stringify (result));
});