Hello, I know practically nothing about creating an extension and that’s why I want to ask you how to create an extension. what is necessary to function what is necessary to do.
Extensions are just websites.
So if you have prior knowledge of building websites you have a starting point.
Extensions can just about do whatever a website can do.
The Extension frontend is static HTML, JS, CSS. (see also the documentation about what can/can’t be included - Extensions | Twitch Developers)
The Frontend is served from a “dumb”/static content CDN with nginx
The frontend must incliude the Twitch JS helper
Your JS must invoke the onAuthorized callback
Your extension in localtest, just means not on the TwitchCDN.
In hosted test and above your extension is in a sub folder on the extensions subdomain
If you align your dev environment to match then you have a good starting point.
The backend, if your extension needs one, can be in whatever language you want it just needs to operate over SSL.
See also the technical guide: Required Technical Background | Twitch Developers