Releases: startrev/SnipX
Rewrote to custom web components
Rewrote all v0.1.0 - v0.2.0 code to use custom web components.
The current stage of the project is the same as the previous release, except this time it's a little more modular.
Since this is an extension, I'd like to make the assumption that the browser running the extension is somewhat modern. Therefore, it shouldn't be an issue using ES6. 🤞 fingers crossed.
Initial Release-alpha
A solid boilerplate for a Chromium Extension.
Includes a Popup with basic UX functionality and also a
content script that just logs something to the console.
The structure is designed for simplicity. That's why
a lot of the code is written in single files instead of
modularizing everything. I think it just makes it
easier for all levels of programmers to get into the
code and start making changes.
main.js
is the single script file for index.html (the client)
content.js
runs on every tab as soon as it loads (the logic)