-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Firefox link doesn't work - suspicious copy in Firefox Add-ons catalog #3
Comments
That developer implemented it in response to issue 1 (#1). I don't know them. They offered to add me to the extension, I reached out and have not heard back. The version published by me is out for review, it should be available very soon. I explored options like showing notifications, I found them too annoying or invasive. Good feedback, perhaps I'll add it as an optional permission. |
Firefox addon was just approved |
I apologize, I completely missed your email at the time—this is how I'm finding out about it. I'm happy to add you to the listing, but before doing so and updating to the latest version of your code, I feel the need to ask you why you insist on routing firefox addon detail requests through your server, since responsibility for any data collection now also falls on me.
There's probably a valid argument for doing so, though I'm not sure I'd agree with it. Either way, before anything else happens, the README needs to be updated:
I'm sorry, but this whole thing gives me pause. Using my original implementation with a simple browser type check would have saved you time and effort, and despite that, you chose to move forward with routing traffic through the server for what is essentially an advertising platform you control. |
If my intentions are still in doubt, I encourage you to direct your attention to the agenda for today's WECG meeting, in which my own proposal to obviate the need for any third party server is being discussed: w3c/webextensions#556 I chose the current architecture for a few reasons: CachingThe API endpoint implements three-tiered caching for requests:
Taking a peek at the server log query strings, some browsers have upwards of 50 extensions installed, and despite the structure of the extension, plenty of duplicate requests are being sent. Code MaintenanceChromium installs will outnumber Firefox installs 100 to 1, and probably more. That is just the reality of the browser landscape at the moment. Since most of the traffic needs to scrape, it's simpler for the extension to work identically across browsers, and for the server to separately manage Firefox/Chromium IDs. Furthermore, since the extension complexity is so low, fixes will likely fall on the backend, which I can deploy immediately rather than redeploying to two extension marketplaces. Side ProjectI run a lot of side projects off the same $5 DigitalOcean instance. This is one of them, ExBoost is one of them. They share some scraping code, it was more convenient for me. None of them generate any money. |
Nice work guys! |
Love the idea of this project! Heard about it on twit.tv's Security Now podcast.
The Firefox link in the readme is broken.
I searched for it in the Firefox Add-ons catalog and found this - though the guy admits it is a copy and modified version of your original project. Unsure how safe it may be?
One more q - is there any other way to alert when changes take place to extension ownership. I'm using Arc desktop browser (Chromium based) which doesn't have the Chrome toolbar or ability to 'pin' this extension, an alert or something configurable would be really helpful.
Keep up the good work!
The text was updated successfully, but these errors were encountered: