Love the fact that it is open-source and free to use. I can see it being useful for a lot of people who don't want to spend money but know they need to do some form of simple automation using their browser.
How can you verify that your extension actually runs the code that's in the open source repository?
Extensions' integrity can be signed and verified against something that was also authored by the creator, but what verifies that the code in the linked repository is the same one, not a different one?
Checksums are super useful, too - if you build the project yourself, you can get the checksum, and if it's different than the one in the store, you can ask questions.
A web of trust style checksum confirmation network would be invaluable for browser extensions. Building that into a browser's security model would be great - an extension has to be validated with a minimum score or it's disabled unless manually activated.
Browser extension stores should be more transparent about open source and licensing.
And probably they should collaborate with CI providers - eg. make contract with GitHub to sign artifacts with "these files were built using following pipeline from commit XYZ in repository JohnSmith/UserBase".
I've been trying to find a way to hand over a list of urls and set to download only 2 videos at a time per domain.. then after one is finishes wait a random X seconds and then get the next in the list.
Sounds like it should be easy to put something like this together, just not sure what tools would be most suited for such a thing in this day and age.
One use case that got me interested in browser automation is the task of creating a new twitter account which follows everyone followed by an existing twitter account. Aka automating clicking and scrolling the same button down a page.
Extracting my data from sites like my bank/broker. Currently I'm doing it manually whenever I happen to login. After copying the relevant html, I need to fix the formatting and other transforms before the entry can be added to my sheets.
I'm thinking with this I can get it to instantly select the right fields and prepare the data, put it in my clipboard, then I will be able to just paste in my sheet saving some time.