How does it work? Documentation?
Hi @polywock
Awesome work here. Looking forward to use this plugin in a personal project of mine. Is there any documentation of the architecture / functionality of your work? Or can you give me some hints to find the most important components / modules in this project?
Many thanks & again, great work!
Thank you! Apologies for the late reply. Unfortunately, there is currently no documentation. I also comment less than I should. The project uses Webpack, React, and Typescript.
src/contentScript # everything related to the content script (the script that runs on the webpages itself). src/background # everything related to the background page (the script running in the background). src/options # everything related to options page. src/popup # everything related to the popup page (when you click the extension icon). src/utils # helper functions or functions not specific to just a single section. src/comps # react components used in options page, popup page.