From 79eb634423e67d394860d77767614abf1ca36cee Mon Sep 17 00:00:00 2001 From: DemonWareXT Date: Sun, 19 Dec 2021 00:34:19 +0100 Subject: [PATCH] Updated Enabling the widget (markdown) --- Enabling-the-widget.md | 38 +++++++++++++++----------------------- 1 file changed, 15 insertions(+), 23 deletions(-) diff --git a/Enabling-the-widget.md b/Enabling-the-widget.md index 6b23c66..beb5fd1 100644 --- a/Enabling-the-widget.md +++ b/Enabling-the-widget.md @@ -3,36 +3,28 @@ contain sensitive data. 2. Using `/devtools` in Element Web, edit the `m.widgets` account data event to have the following content: - ```json - { - "type": "m.widgets", - "content": { - "stickerpicker": { - "content": { - "type": "m.stickerpicker", - "url": "https://demonwarext.github.io/stickerpicker/web/?theme=$theme", - "name": "Stickerpicker", - "data": {} - }, - "sender": "@you:matrix.server.name", - "state_key": "stickerpicker", - "type": "m.widget", - "id": "stickerpicker" - } - } - } + { + "stickerpicker": { + "content": { + "type": "m.stickerpicker", + "url": "https://your.sticker.picker.url/?theme=$theme", + "name": "Stickerpicker", + "data": {} + }, + "sender": "@you:picker.url", + "state_key": "stickerpicker", + "type": "m.widget", + "id": "stickerpicker" + } + } ``` - If you do not yet have a `m.widgets` event, simply create it with that content. You can also [use the client-server API directly][1] instead of using Element Web. - The `theme=$theme` query parameter will make the widget conform to Element's theme automatically. You can also use `light`, `dark` or `black` instead of `$theme` to always use a specific theme. - You can use https://maunium.net/stickers-demo/ as the URL to try out the picker without hosting the files yourself. 3. Open the sticker picker and enjoy the fast sticker picking experience. - -[1]: https://matrix.org/docs/spec/client_server/latest#put-matrix-client-r0-user-userid-account-data-type +[1]: https://matrix.org/docs/spec/client_server/latest#put-matrix-client-r0-user-userid-account-data-type \ No newline at end of file