How to use Python in a Chrome extension?

I want to create a Chrome extension using Python. Is this possible or will I have to use JavaScript?

+4
source share
2 answers

You can take a look at Pajamas , as this will allow you to write in Python, but compile your code before Javascript.

+1
source

No. Not directly. However, there are some possibilities. NPAPI for Python - Chrome Extension

0
source

Source: https://habr.com/ru/post/1342596/


All Articles