Critiques pour Return YouTube Dislike
Return YouTube Dislike par Dmitry Selivanov
Avis de Aristotelis
Réponse du développeur
mis en ligne : il y a 2 heuresThanks for taking the time to leave a review.
RYD hasn’t changed how it handles your data. What changed is how Mozilla labels these permissions - not what the extension does with your data.
The extension only uses the data it needs to show dislikes and count votes.
Its site permissions cover YouTube and its own API at returnyoutubedislikeapi.com. RYD doesn’t read other websites, and these site permissions cannot be used to access them.
Personally identifiable information - RYD’s randomly generated, anonymous user ID, used to count votes. This isn’t your Google or YouTube account.
Browsing activity - opening the next YouTube video, so the extension can send its video ID and fetch the new dislike count.
Website content - things like the visible like count, which helps calculate dislike estimates.
Website activity - clicking Like or Dislike.
Again, this is about YouTube activity. The extension isn’t watching everything you do across the internet - it simply can’t do that with these site permissions.
The new labels sound scary, but they don’t give the extension access to more websites.
RYD is open source, so you can see how it works: https://github.com/Anarios/return-youtube-dislike
RYD hasn’t changed how it handles your data. What changed is how Mozilla labels these permissions - not what the extension does with your data.
The extension only uses the data it needs to show dislikes and count votes.
Its site permissions cover YouTube and its own API at returnyoutubedislikeapi.com. RYD doesn’t read other websites, and these site permissions cannot be used to access them.
Personally identifiable information - RYD’s randomly generated, anonymous user ID, used to count votes. This isn’t your Google or YouTube account.
Browsing activity - opening the next YouTube video, so the extension can send its video ID and fetch the new dislike count.
Website content - things like the visible like count, which helps calculate dislike estimates.
Website activity - clicking Like or Dislike.
Again, this is about YouTube activity. The extension isn’t watching everything you do across the internet - it simply can’t do that with these site permissions.
The new labels sound scary, but they don’t give the extension access to more websites.
RYD is open source, so you can see how it works: https://github.com/Anarios/return-youtube-dislike
5 027 notes
- Noté 1 sur 5par Utilisateur ou utilisatrice 20100239 de Firefox, il y a 26 minutesspyware, please ignore whatever the 'developer' has claimed, I'm sure they've been hacked and this is a compromised account now, reported.
Réponse du développeur
mis en ligne : il y a 22 minutesThanks for the feedback. Let me explain what those permissions mean.
RYD hasn’t changed how it handles your data. What changed is how Mozilla labels these permissions - not what the extension does with your data.
The extension only uses the data it needs to show dislikes and count votes.
Its site permissions cover YouTube and its own API at returnyoutubedislikeapi.com. RYD doesn’t read other websites, and these site permissions cannot be used to access them.
Personally identifiable information - RYD’s randomly generated, anonymous user ID, used to count votes. This isn’t your Google or YouTube account.
Browsing activity - opening the next YouTube video, so the extension can send its video ID and fetch the new dislike count.
Website content - things like the visible like count, which helps calculate dislike estimates.
Website activity - clicking Like or Dislike.
Again, this is about YouTube activity. The extension isn’t watching everything you do across the internet - it simply can’t do that with these site permissions.
The new labels sound scary, but they don’t give the extension access to more websites.
RYD is open source, so you can see how it works: https://github.com/Anarios/return-youtube-dislike - Noté 2 sur 5par Judas, il y a une heuremy browser has been taking a whole lot more memory since this got updated...
Réponse du développeur
mis en ligne : il y a 35 minutesSorry you’re having trouble with memory usage.
RYD hasn’t changed how it handles your data. What changed is how Mozilla labels these permissions - not what the extension does with your data.
The extension only uses the data it needs to show dislikes and count votes.
Its site permissions cover YouTube and its own API at returnyoutubedislikeapi.com. RYD doesn’t read other websites, and these site permissions cannot be used to access them.
Personally identifiable information - RYD’s randomly generated, anonymous user ID, used to count votes. This isn’t your Google or YouTube account.
Browsing activity - opening the next YouTube video, so the extension can send its video ID and fetch the new dislike count.
Website content - things like the visible like count, which helps calculate dislike estimates.
Website activity - clicking Like or Dislike.
Again, this is about YouTube activity. The extension isn’t watching everything you do across the internet - it simply can’t do that with these site permissions.
The new labels sound scary, but they don’t give the extension access to more websites.
RYD is open source, so you can see how it works: https://github.com/Anarios/return-youtube-dislike - Noté 1 sur 5par Utilisateur ou utilisatrice 13927441 de Firefox, il y a une heureThe developer claims that Mozilla changed the labeling system, but I have a lot of extensions installed, and none of them asked for additional permissions to collect my data. Why do I smell bs?
If you are a scammer, say: "Thanks for taking the time to leave a review.
RYD hasn’t changed how it handles your data. What changed is how Mozilla labels these permissions - not what the extension does with your data."Réponse du développeur
mis en ligne : il y a une heureOther extenions haven't requested it because they haven't gone throught the "data disclosure" process yet (check Sponsorblock's response in my discord server). This extension is just among the first few unlucky ones. - Noté 1 sur 5par Utilisateur ou utilisatrice 20155068 de Firefox, il y a 2 heuresNew permission requirements make this an automatic hard pass - recommendation should be revoked.
Edit in response to the developer:
I think you're missing the point.
The issue isn't that Mozilla suddenly gave RYD access to the whole internet. It's that Mozilla has now made explicit data collection that was apparently already happening, but wasn't previously disclosed.
And "anonymous user ID" doesn't really solve that. It's a persistent identifier tied to YouTube activity. That's pseudonymous, not meaningfully anonymous.
More importantly, the extension being open source only tells us what gets sent. The RYD backend is still a black box. Once that data leaves the browser, we're being asked to trust RYD not to retain, correlate, profile, monetize, or sell it — particularly after we've learned the collection was previously undeclared.
The fact that the data is useful to RYD doesn't mean it's necessary for the extension's basic advertised function. Showing a dislike count doesn't inherently require building a persistent record of users' YouTube activity.
And the Chrome and Firefox stores don't even have identical data-collection declarations, so "Mozilla just changed the labels" doesn't really explain everything away.
That's why I find the response a bit tone deaf. The concern isn't "OMG, RYD can now read every website." It's "why does a simple dislike-count extension need to collect this much information about my YouTube activity, and why was that collection not clearly disclosed before?"
Edit 2:
The vote/registration pipeline isn't anonymous — it's pseudonymous and persistent, and your own code and privacy policy confirm it:
1) Persistent identifier: generateUserId() creates a unique 36-character ID at registration, which createBrowserCredentialStore() persists in browser.storage.sync. It isn't rotated per session or video.
2) Persistent correlation: performVote() sends { userId, videoId, value } to /interact/vote and /interact/confirmVote. Reusing the same identifier lets your backend associate votes and video activity with the same user over time. That's pseudonymization, not anonymization.
3) Additional identifiers: Your privacy policy says IP address and request time are also collected. Those can further associate the persistent identifier with a real-world network connection.
4) Your own policy treats the identifier as personal data. So describing it to users simply as an "anonymous" ID is misleading. Randomly generated does not mean anonymous when the value is persistent and specifically used to correlate records.
The appropriate description is pseudonymous, persistent user identification, not anonymous collection.Réponse du développeur
mis en ligne : il y a une heure"why simple dislike-count extension need to collect this much information about my YouTube activity" - it's explained under every review here. Try reading the response, please. I literally list every point, and why it is there. They are trivial, like detecting what video is playing (to show dislikes for that video) and detecting that like or dislike button was clicked.
I'll copy-paste it once more
Personally identifiable information - RYD’s randomly generated, anonymous user ID, used to count votes. This isn’t your Google or YouTube account.
Browsing activity - opening the next YouTube video, so the extension can send its video ID and fetch the new dislike count.
Website content - things like the visible like count, which helps calculate dislike estimates.
Website activity - clicking Like or Dislike. - Noté 5 sur 5par User, il y a 2 heuresThank you so much for making this extension that helps us to not get scammed on YouTube, among other things.
Réponse du développeur
mis en ligne : il y a 2 heuresThanks for taking the time to leave a review.
RYD hasn’t changed how it handles your data. What changed is how Mozilla labels these permissions - not what the extension does with your data.
The extension only uses the data it needs to show dislikes and count votes.
Its site permissions cover YouTube and its own API at returnyoutubedislikeapi.com. RYD doesn’t read other websites, and these site permissions cannot be used to access them.
Personally identifiable information - RYD’s randomly generated, anonymous user ID, used to count votes. This isn’t your Google or YouTube account.
Browsing activity - opening the next YouTube video, so the extension can send its video ID and fetch the new dislike count.
Website content - things like the visible like count, which helps calculate dislike estimates.
Website activity - clicking Like or Dislike.
Again, this is about YouTube activity. The extension isn’t watching everything you do across the internet - it simply can’t do that with these site permissions.
The new labels sound scary, but they don’t give the extension access to more websites.
RYD is open source, so you can see how it works: https://github.com/Anarios/return-youtube-dislike - Noté 1 sur 5par THX1138, il y a 3 heuresDas ist nicht mehr die ursprüngliche Erweiterung. Sie entwickelt sich in eine Richtung, die mir nicht gefällt. Habe kein gutes Gefühl. Wird deinstalliert!
Réponse du développeur
mis en ligne : il y a 3 heuresDanke für dein Feedback. Es tut mir leid, dass du wegen der Erweiterung ein ungutes Gefühl hast.
RYD hat den Umgang mit deinen Daten nicht geändert. Geändert hat sich, wie Mozilla diese Berechtigungen bezeichnet - nicht, was die Erweiterung mit deinen Daten macht.
Die Erweiterung nutzt nur die Daten, die sie braucht, um Dislikes anzuzeigen und Stimmen zu zählen.
Ihre Website-Berechtigungen gelten für YouTube und ihre eigene API unter returnyoutubedislikeapi.com. RYD liest keine anderen Websites aus, und diese Website-Berechtigungen können nicht genutzt werden, um auf sie zuzugreifen.
Personenbezogene Daten - die von RYD zufällig generierte, anonyme Benutzer-ID, mit der Stimmen gezählt werden. Das ist nicht dein Google- oder YouTube-Konto.
Surfaktivität - das Öffnen des nächsten YouTube-Videos, damit die Erweiterung dessen Video-ID senden und die neue Dislike-Anzahl abrufen kann.
Website-Inhalte - zum Beispiel die sichtbare Like-Anzahl, die bei der Berechnung der geschätzten Dislike-Zahlen hilft.
Website-Aktivität - das Klicken auf Like oder Dislike.
Noch einmal: Hier geht es um Aktivitäten auf YouTube. Die Erweiterung verfolgt nicht alles, was du im Internet machst - mit diesen Website-Berechtigungen kann sie das schlicht nicht.
Die neuen Bezeichnungen klingen beunruhigend, geben der Erweiterung aber keinen Zugriff auf weitere Websites.
RYD ist Open Source, du kannst dir also ansehen, wie es funktioniert: https://github.com/Anarios/return-youtube-dislike - Noté 5 sur 5par Dex Luther, il y a 4 heuresIt's amazing people take the time to leave a 1-star review, but don't bother to take that time to look anything up.
It's still sad that we even need an extension like this, but it's not doing what the 1-star reviews will have you think it does.Réponse du développeur
mis en ligne : il y a 4 heuresThanks for taking the time to leave a review.
RYD hasn’t changed how it handles your data. What changed is how Mozilla labels these permissions - not what the extension does with your data.
The extension only uses the data it needs to show dislikes and count votes.
Its site permissions cover YouTube and its own API at returnyoutubedislikeapi.com. RYD doesn’t read other websites, and these site permissions cannot be used to access them.
Personally identifiable information - RYD’s randomly generated, anonymous user ID, used to count votes. This isn’t your Google or YouTube account.
Browsing activity - opening the next YouTube video, so the extension can send its video ID and fetch the new dislike count.
Website content - things like the visible like count, which helps calculate dislike estimates.
Website activity - clicking Like or Dislike.
Again, this is about YouTube activity. The extension isn’t watching everything you do across the internet - it simply can’t do that with these site permissions.
The new labels sound scary, but they don’t give the extension access to more websites.
RYD is open source, so you can see how it works: https://github.com/Anarios/return-youtube-dislike Réponse du développeur
mis en ligne : il y a 4 heuresThanks for the feedback. Let me explain what those permissions mean.
RYD hasn’t changed how it handles your data. What changed is how Mozilla labels these permissions - not what the extension does with your data.
The extension only uses the data it needs to show dislikes and count votes.
Its site permissions cover YouTube and its own API at returnyoutubedislikeapi.com. RYD doesn’t read other websites, and these site permissions cannot be used to access them.
Personally identifiable information - RYD’s randomly generated, anonymous user ID, used to count votes. This isn’t your Google or YouTube account.
Browsing activity - opening the next YouTube video, so the extension can send its video ID and fetch the new dislike count.
Website content - things like the visible like count, which helps calculate dislike estimates.
Website activity - clicking Like or Dislike.
Again, this is about YouTube activity. The extension isn’t watching everything you do across the internet - it simply can’t do that with these site permissions.
The new labels sound scary, but they don’t give the extension access to more websites.
RYD is open source, so you can see how it works: https://github.com/Anarios/return-youtube-dislike- Noté 5 sur 5par Gresol, il y a 5 heures
Réponse du développeur
mis en ligne : il y a 4 heuresThanks for the feedback. Let me explain what those permissions mean.
RYD hasn’t changed how it handles your data. What changed is how Mozilla labels these permissions - not what the extension does with your data.
The extension only uses the data it needs to show dislikes and count votes.
Its site permissions cover YouTube and its own API at returnyoutubedislikeapi.com. RYD doesn’t read other websites, and these site permissions cannot be used to access them.
Personally identifiable information - RYD’s randomly generated, anonymous user ID, used to count votes. This isn’t your Google or YouTube account.
Browsing activity - opening the next YouTube video, so the extension can send its video ID and fetch the new dislike count.
Website content - things like the visible like count, which helps calculate dislike estimates.
Website activity - clicking Like or Dislike.
Again, this is about YouTube activity. The extension isn’t watching everything you do across the internet - it simply can’t do that with these site permissions.
The new labels sound scary, but they don’t give the extension access to more websites.
RYD is open source, so you can see how it works: https://github.com/Anarios/return-youtube-dislike- Noté 1 sur 5par Utilisateur ou utilisatrice 11945314 de Firefox, il y a 6 heureswhy suddenly does this need..:
Browsing activity
Personally identifying information
Website activity
Website content
Thats a bit much..
It only needs to activate when i open youtube and give me the button....Réponse du développeur
mis en ligne : il y a 6 heuresThanks for the feedback. Let me explain what those permissions mean.
RYD hasn’t changed how it handles your data. What changed is how Mozilla labels these permissions - not what the extension does with your data.
The extension only uses the data it needs to show dislikes and count votes.
Its site permissions cover YouTube and its own API at returnyoutubedislikeapi.com. RYD doesn’t read other websites, and these site permissions cannot be used to access them.
Personally identifiable information - RYD’s randomly generated, anonymous user ID, used to count votes. This isn’t your Google or YouTube account.
Browsing activity - opening the next YouTube video, so the extension can send its video ID and fetch the new dislike count.
Website content - things like the visible like count, which helps calculate dislike estimates.
Website activity - clicking Like or Dislike.
Again, this is about YouTube activity. The extension isn’t watching everything you do across the internet - it simply can’t do that with these site permissions.
The new labels sound scary, but they don’t give the extension access to more websites.
RYD is open source, so you can see how it works: https://github.com/Anarios/return-youtube-dislike Réponse du développeur
mis en ligne : il y a 5 heuresThanks for the feedback. Let me explain what those permissions mean.
RYD hasn’t changed how it handles your data. What changed is how Mozilla labels these permissions - not what the extension does with your data.
The extension only uses the data it needs to show dislikes and count votes.
Its site permissions cover YouTube and its own API at returnyoutubedislikeapi.com. RYD doesn’t read other websites, and these site permissions cannot be used to access them.
Personally identifiable information - RYD’s randomly generated, anonymous user ID, used to count votes. This isn’t your Google or YouTube account.
Browsing activity - opening the next YouTube video, so the extension can send its video ID and fetch the new dislike count.
Website content - things like the visible like count, which helps calculate dislike estimates.
Website activity - clicking Like or Dislike.
Again, this is about YouTube activity. The extension isn’t watching everything you do across the internet - it simply can’t do that with these site permissions.
The new labels sound scary, but they don’t give the extension access to more websites.
RYD is open source, so you can see how it works: https://github.com/Anarios/return-youtube-dislike- Noté 1 sur 5par Utilisateur ou utilisatrice 12964980 de Firefox, il y a 6 heuresThe add-on no longer works in private windows, so it is completely useless to me.
Réponse du développeur
mis en ligne : il y a 6 heuresYeah, it will be addressed later. Mozilla forbids data collection in private windows - which means you can't submit likes\dislikes in a private window. It isn't a problem, but requires additional coding, which I didn't have time for. - Noté 1 sur 5par Utilisateur ou utilisatrice 18924088 de Firefox, il y a 6 heuresRemoved this extension when out of nowhere it tried forcing me to agree to invasive data collection. There is no need for this.
Réponse du développeur
mis en ligne : il y a 5 heuresThanks for the feedback. Let me explain what those permissions mean.
RYD hasn’t changed how it handles your data. What changed is how Mozilla labels these permissions - not what the extension does with your data.
The extension only uses the data it needs to show dislikes and count votes.
Its site permissions cover YouTube and its own API at returnyoutubedislikeapi.com. RYD doesn’t read other websites, and these site permissions cannot be used to access them.
Personally identifiable information - RYD’s randomly generated, anonymous user ID, used to count votes. This isn’t your Google or YouTube account.
Browsing activity - opening the next YouTube video, so the extension can send its video ID and fetch the new dislike count.
Website content - things like the visible like count, which helps calculate dislike estimates.
Website activity - clicking Like or Dislike.
Again, this is about YouTube activity. The extension isn’t watching everything you do across the internet - it simply can’t do that with these site permissions.
The new labels sound scary, but they don’t give the extension access to more websites.
RYD is open source, so you can see how it works: https://github.com/Anarios/return-youtube-dislike - Noté 1 sur 5par Douglas, o Dev, il y a 6 heuresThey will collect your personal data and your internet activity. Pure telemetry. Delete this freemium extension!
Réponse du développeur
mis en ligne : il y a 5 heuresThanks for the feedback. Let me explain what those permissions mean.
RYD hasn’t changed how it handles your data. What changed is how Mozilla labels these permissions - not what the extension does with your data.
The extension only uses the data it needs to show dislikes and count votes.
Its site permissions cover YouTube and its own API at returnyoutubedislikeapi.com. RYD doesn’t read other websites, and these site permissions cannot be used to access them.
Personally identifiable information - RYD’s randomly generated, anonymous user ID, used to count votes. This isn’t your Google or YouTube account.
Browsing activity - opening the next YouTube video, so the extension can send its video ID and fetch the new dislike count.
Website content - things like the visible like count, which helps calculate dislike estimates.
Website activity - clicking Like or Dislike.
Again, this is about YouTube activity. The extension isn’t watching everything you do across the internet - it simply can’t do that with these site permissions.
The new labels sound scary, but they don’t give the extension access to more websites.
RYD is open source, so you can see how it works: https://github.com/Anarios/return-youtube-dislike - Noté 1 sur 5par Spyro24, il y a 6 heuresit was a good extension until now ... now it begs for money for advanced features, the only thing it should do is showing me the dislikes and i dont need adavnced features, every developer turns at somepoint against the users ...
Réponse du développeur
mis en ligne : il y a 5 heuresSorry the message about new features bothered you. It’s shown only once during the lifetime of the extension, and it’s timed to appear after a browser restart - hopefully the least disruptive moment.
Handling YouTube-scale traffic and storing dozens of terabytes of like/dislike data on a school-lunch budget ain’t that easy. The funding from these features is what keeps RYD’s servers running.
And as for the permissions:
RYD hasn’t changed how it handles your data. What changed is how Mozilla labels these permissions - not what the extension does with your data.
The extension only uses the data it needs to show dislikes and count votes.
Its site permissions cover YouTube and its own API at returnyoutubedislikeapi.com. RYD doesn’t read other websites, and these site permissions cannot be used to access them.
Personally identifiable information - RYD’s randomly generated, anonymous user ID, used to count votes. This isn’t your Google or YouTube account.
Browsing activity - opening the next YouTube video, so the extension can send its video ID and fetch the new dislike count.
Website content - things like the visible like count, which helps calculate dislike estimates.
Website activity - clicking Like or Dislike.
Again, this is about YouTube activity. The extension isn’t watching everything you do across the internet - it simply can’t do that with these site permissions.
The new labels sound scary, but they don’t give the extension access to more websites.
RYD is open source, so you can see how it works: https://github.com/Anarios/return-youtube-dislike - Noté 1 sur 5par SirSmartii, il y a 6 heuresErforderliche Datenerfassung nach Angaben des Entwicklers:
Surfaktivität
Personenbezogene Daten
Website-Aktivitäten
Website-Inhalt
Goodbye trojanerRéponse du développeur
mis en ligne : il y a 5 heuresThanks for the feedback. Let me explain what those permissions mean.
RYD hasn’t changed how it handles your data. What changed is how Mozilla labels these permissions - not what the extension does with your data.
The extension only uses the data it needs to show dislikes and count votes.
Its site permissions cover YouTube and its own API at returnyoutubedislikeapi.com. RYD doesn’t read other websites, and these site permissions cannot be used to access them.
Personally identifiable information - RYD’s randomly generated, anonymous user ID, used to count votes. This isn’t your Google or YouTube account.
Browsing activity - opening the next YouTube video, so the extension can send its video ID and fetch the new dislike count.
Website content - things like the visible like count, which helps calculate dislike estimates.
Website activity - clicking Like or Dislike.
Again, this is about YouTube activity. The extension isn’t watching everything you do across the internet - it simply can’t do that with these site permissions.
The new labels sound scary, but they don’t give the extension access to more websites.
RYD is open source, so you can see how it works: https://github.com/Anarios/return-youtube-dislike - Noté 5 sur 5par janjamjabjag, il y a 7 heuresLogged into here for the first time so I could leave a supportive review regarding what happened with the latest update.
I was scared and skeptical at first, when I noticed what it was asking for seemed like invasive permissions. After taking literally seconds to research why/what had changed, I found out what was going on — nothing more than Mozilla just changing the wording of their policies.
This add-on is still safe to use and does not collect any sensitive/personal information about you or your browsing.
P.S. If you think this review was written with AI because of the em-dash, there's no hope for you :-)Réponse du développeur
mis en ligne : il y a 5 heuresThanks for taking the time to leave a review.
RYD hasn’t changed how it handles your data. What changed is how Mozilla labels these permissions - not what the extension does with your data.
The extension only uses the data it needs to show dislikes and count votes.
Its site permissions cover YouTube and its own API at returnyoutubedislikeapi.com. RYD doesn’t read other websites, and these site permissions cannot be used to access them.
Personally identifiable information - RYD’s randomly generated, anonymous user ID, used to count votes. This isn’t your Google or YouTube account.
Browsing activity - opening the next YouTube video, so the extension can send its video ID and fetch the new dislike count.
Website content - things like the visible like count, which helps calculate dislike estimates.
Website activity - clicking Like or Dislike.
Again, this is about YouTube activity. The extension isn’t watching everything you do across the internet - it simply can’t do that with these site permissions.
The new labels sound scary, but they don’t give the extension access to more websites.
RYD is open source, so you can see how it works: https://github.com/Anarios/return-youtube-dislike - Noté 1 sur 5par DD, il y a 7 heures
- Noté 1 sur 5par ruump1, il y a 8 heuresnah bro why this thing tryna make me log in now?? it literally just show a number lol. new update saying it need my github/patreon login and "authentication" stuff, nah i'm good on that. premium popups been creepin in for a minute too fr. uninstalled, straight up.
Réponse du développeur
mis en ligne : il y a 7 heuresYou don't have to log in. Log in is just for advanced features - which you don't have to use.
Sorry the message about new features bothered you. It’s shown only once during the lifetime of the extension, and it’s timed to appear after a browser restart - hopefully the least disruptive moment.
Handling YouTube-scale traffic and storing dozens of terabytes of like/dislike data on a school-lunch budget ain’t that easy. The funding from these features is what keeps RYD’s servers running.
And as for the permissions:
RYD hasn’t changed how it handles your data. What changed is how Mozilla labels these permissions - not what the extension does with your data.
The extension only uses the data it needs to show dislikes and count votes.
Its site permissions cover YouTube and its own API at returnyoutubedislikeapi.com. RYD doesn’t read other websites, and these site permissions cannot be used to access them.
Personally identifiable information - RYD’s randomly generated, anonymous user ID, used to count votes. This isn’t your Google or YouTube account.
Browsing activity - opening the next YouTube video, so the extension can send its video ID and fetch the new dislike count.
Website content - things like the visible like count, which helps calculate dislike estimates.
Website activity - clicking Like or Dislike.
Again, this is about YouTube activity. The extension isn’t watching everything you do across the internet - it simply can’t do that with these site permissions.
The new labels sound scary, but they don’t give the extension access to more websites.
RYD is open source, so you can see how it works: https://github.com/Anarios/return-youtube-dislike - Noté 1 sur 5par Clown-Hour, il y a 8 heures
- Noté 1 sur 5par Shadow Glider, il y a 8 heuresHorrible update added spyware, locking things behind "premium", and is clearly LLM-gen-AI slop.
Réponse du développeur
mis en ligne : il y a 8 heuresSorry the message about new features bothered you. It’s shown only once during the lifetime of the extension, and it’s timed to appear after a browser restart - hopefully the least disruptive moment.
Handling YouTube-scale traffic and storing dozens of terabytes of like/dislike data on a school-lunch budget ain’t that easy. The funding from these features is what keeps RYD’s servers running.
And as for the permissions:
RYD hasn’t changed how it handles your data. What changed is how Mozilla labels these permissions - not what the extension does with your data.
The extension only uses the data it needs to show dislikes and count votes.
Its site permissions cover YouTube and its own API at returnyoutubedislikeapi.com. RYD doesn’t read other websites, and these site permissions cannot be used to access them.
Personally identifiable information - RYD’s randomly generated, anonymous user ID, used to count votes. This isn’t your Google or YouTube account.
Browsing activity - opening the next YouTube video, so the extension can send its video ID and fetch the new dislike count.
Website content - things like the visible like count, which helps calculate dislike estimates.
Website activity - clicking Like or Dislike.
Again, this is about YouTube activity. The extension isn’t watching everything you do across the internet - it simply can’t do that with these site permissions.
The new labels sound scary, but they don’t give the extension access to more websites.
RYD is open source, so you can see how it works: https://github.com/Anarios/return-youtube-dislike - Noté 1 sur 5par sonaza, il y a 8 heures
- Noté 1 sur 5par adam, il y a 10 heuresstarted begging for money after upgrade, massive red flag - DO NOT INSTALL
Réponse du développeur
mis en ligne : il y a 9 heuresSorry the message about new features bothered you. It’s shown only once during the lifetime of the extension, and it’s timed to appear after a browser restart - hopefully the least disruptive moment.
Handling YouTube-scale traffic and storing dozens of terabytes of like/dislike data on a school-lunch budget ain’t that easy. The funding from these features is what keeps RYD’s servers running.
And as for the permissions:
RYD hasn’t changed how it handles your data. What changed is how Mozilla labels these permissions - not what the extension does with your data.
The extension only uses the data it needs to show dislikes and count votes.
Its site permissions cover YouTube and its own API at returnyoutubedislikeapi.com. RYD doesn’t read other websites, and these site permissions cannot be used to access them.
Personally identifiable information - RYD’s randomly generated, anonymous user ID, used to count votes. This isn’t your Google or YouTube account.
Browsing activity - opening the next YouTube video, so the extension can send its video ID and fetch the new dislike count.
Website content - things like the visible like count, which helps calculate dislike estimates.
Website activity - clicking Like or Dislike.
Again, this is about YouTube activity. The extension isn’t watching everything you do across the internet - it simply can’t do that with these site permissions.
The new labels sound scary, but they don’t give the extension access to more websites.
RYD is open source, so you can see how it works: https://github.com/Anarios/return-youtube-dislike