These steps add a sticker/emoji picker to your Matrix client using the devtools widget.
## Steps
1. Open any chat and run `/devtools`.
2. Under the **Other** section, click **Explore account data**.
![[e8f14933-2421-4e8e-9852-aa3fd3ae3521.png]]
3. If `m.widgets` already exists in the list, click it to edit. Otherwise, type `m.widgets` in the filter box and click **Send custom account data event** at the bottom.
![[61095586-d1c8-4374-90a2-4206835e8a43.png]]
4. Make sure the **Event Type** is set to `m.widgets`, then paste the following JSON into the **Event Content** box. Replace both instances of `@you:glitches.chat` with your full Matrix user ID (e.g. `@katie:glitches.chat`):
```json
{
"stickerpicker": {
"content": {
"type": "m.stickerpicker",
"url": "https://glitches.chat/stickerpicker/?theme=$theme",
"name": "Stickerpicker",
"creatorUserId": "@you:glitches.chat",
"data": {}
},
"sender": "@you:glitches.chat",
"state_key": "stickerpicker",
"type": "m.widget",
"id": "stickerpicker"
}
}
```
![[c4b0cb38-8afc-4327-9d5a-2871f0c3c1ac (1).png]]
5. Click **Send**. The emoji/sticker picker will now appear in your message composer toolbar.