Anarios / return-youtube-dislike

Chrome extension to return youtube dislikes
https://returnyoutubedislike.com/
GNU General Public License v3.0
12.64k stars 566 forks source link

View Actual Dislikes by Extension Users vs Estimated #1078

Open ZeCrimsonStache opened 2 months ago

ZeCrimsonStache commented 2 months ago

Extension or Userscript?

Extension

Request or suggest a new feature!

I suggest that the extension show additional information about the actual amount of extension users who liked and disliked the video to compare with the estimation. This extra information would add more clarity about the legitimacy of videos and their creators.

Ways to implement this!

Hovering over the like/dislike ratio bar could show the extra information.

Can you work on this?

Will you be available for follow-up questions to help developers implement this?

Yes

jpa102 commented 1 month ago

there's data in the api endpoint, but it would be nice seeing it as an option in the extension

to demonstrate, this is the data from extension users in this video (title is "Revenge 😂" uploaded by Lucas and Marcus)

url: https://returnyoutubedislikeapi.com/votes?videoid=Zhpk3ML7bIQ

{
    "id":"Zhpk3ML7bIQ",
    "dateCreated":"2024-09-08T07:05:54.53757Z",
    "likes":32538814,
    "rawDislikes":24999,
    "rawLikes":16657,
    "dislikes":20107651,
    "rating":3.4722506249944796,
    "viewCount":1271500363,
    "deleted":false
}

where rawLikes and rawDislikes are from the extension users

this one has 41,656 votes in total (16,657 / 24,999)

ZeCrimsonStache commented 1 month ago

there's data in the api endpoint, but it would be nice seeing it as an option in the extension

to demonstrate, this is the data from extension users in this video (title is "Revenge 😂" uploaded by Lucas and Marcus)

url: https://returnyoutubedislikeapi.com/votes?videoid=Zhpk3ML7bIQ

{
  "id":"Zhpk3ML7bIQ",
  "dateCreated":"2024-09-08T07:05:54.53757Z",
  "likes":32538814,
  "rawDislikes":24999,
  "rawLikes":16657,
  "dislikes":20107651,
  "rating":3.4722506249944796,
  "viewCount":1271500363,
  "deleted":false
}

where rawLikes and rawDislikes are from the extension users

this one has 41,656 votes in total (16,657 / 24,999)

That's pretty cool that it already has the info to implement this.