UNPKG

paella-core

Version:
31 lines 1.3 kB
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://paellaplayer.upv.es/schema/v1/canvas-button-plugin.schema.json", "title": "paella-core generic plugin settings", "description": "Common configuration options for paella-core plugins.", "type": "object", "properties": { "enabled": { "description": "Defines whether the plugin is active or not", "type": "boolean", "default": false }, "order": { "description": "Within each plugin type, the loading order is defined by the 'order' attribute. The lower the order attribute is, the sooner the plugin will be loaded.", "type": "number", "default": 0 }, "description": { "description": "Descriptive text of the button, which can be displayed at different times depending on the paella-core configuration.", "type": "string" }, "side": { "description": "Affects the side on the horizontal axis that the button is placed. It only affects iun case the 'parentContainer' is the playback or the video container.", "type": "string", "enum": [ "left", "right" ] } } }