+ 2
Can anyone tell me how to create a chrome extension using python.
If you do have any useful links/videos from youtube regarding this topic, please feel free to reply them out.
1 Resposta
+ 3
Chrome extentions are built using html,css and JavaScript. To make your python code available to the extention, you have to run on a webserver. There your extension can send requests to be processed and the python scripts reply with data. AWS lambda functions can also work.
Here is a link you start from:
https://css-tricks.com/how-to-build-a-chrome-extension/