How do you build out a Chrome Extension and is there a recommended Javascript library to do so?

I'm looking to build out my web application into a chrome extension but honestly am not too sure where to start. I don't know if there's a library with which you can build extension from (maybe that's a project someone could pick up) but would someone mind explaining how exactly Chrome Extensions are constructed and what the best course of action is to building one (or any resources you may know of).

Chrome Extension is basically just HTML, CSS, and JavaScript files.

I made once taishikato/PinWeb.

popup.html is the main HTML file.

style.css is for CSS.

main.js is for JavaScrip in this case.

Please don't think chrome extension complicated. This is almost the same as the websiteđź‘Ś

0