Files
return-youtube-dislike/README.md
T

103 lines
4.5 KiB
Markdown
Raw Normal View History

2021-11-23 23:23:55 +03:00
[![Chrome Web Store](https://img.shields.io/chrome-web-store/stars/gebbhagfogifgggkldgodflihgfeippi?label=Chrome%20Rating&style=flat&logo=google)](https://chrome.google.com/webstore/detail/youtube-dislike-button/gebbhagfogifgggkldgodflihgfeippi/)
[![Chrome Web Store Users](https://img.shields.io/chrome-web-store/users/gebbhagfogifgggkldgodflihgfeippi?label=Chrome%20Users&style=flat&logo=google)](https://chrome.google.com/webstore/detail/youtube-dislike-button/gebbhagfogifgggkldgodflihgfeippi/)
2021-11-29 00:46:50 +03:00
[![Mozilla rating](https://img.shields.io/amo/stars/return-youtube-dislikes?label=Firefox%20Rating&style=flat&logo=firefox)](https://addons.mozilla.org/en-US/firefox/addon/return-youtube-dislikes/)
[![Mozilla downloads](https://img.shields.io/amo/users/return-youtube-dislikes?label=Firefox%20Users&style=flat&logo=firefox)](https://addons.mozilla.org/en-US/firefox/addon/return-youtube-dislikes/)
2021-11-22 18:38:28 +03:00
[![Commit rate](https://img.shields.io/github/commit-activity/m/Anarios/return-youtube-dislike?label=Commits&style=flat)](https://github.com/Anarios/return-youtube-dislike/commits/main)
[![Issues](https://img.shields.io/github/issues/Anarios/return-youtube-dislike?style=flat&label=Issues)](https://github.com/Anarios/return-youtube-dislike/issues)
2021-11-22 18:38:28 +03:00
[![Discord](https://img.shields.io/discord/909435648170160229?label=Discord&style=flat&logo=discord)](https://discord.gg/UMxyMmCgfF)
[![License](https://img.shields.io/badge/License-GPLv3-blue.svg?style=flat)](https://github.com/Anarios/return-youtube-dislike/blob/main/LICENSE)
2021-11-23 19:21:02 +03:00
2021-11-20 03:54:37 +05:30
# Return YouTube Dislike
2021-11-15 09:06:59 +01:00
<p align="center">
<b>Return YouTube Dislike is an open-source extension that returns the YouTube dislike count.</b><br>
Available for Chrome and Firefox as a Web Extension.<br>
Also available for other browsers as JS Userscript.<br><br>
<img width="400px" src="https://user-images.githubusercontent.com/18729296/141743755-2be73297-250e-4cd1-ac93-8978c5a39d10.png"/>
</p>
2021-11-15 09:06:59 +01:00
## The Story
2021-11-15 09:06:59 +01:00
2021-11-20 16:11:23 +05:30
On November 10th, 2021, Google [announced](https://blog.youtube/news-and-events/update-to-youtube/) that the YouTube dislike count would be removed.
2021-12-24 14:19:49 +03:00
Additionally, the `dislike` field in the YouTube API was [removed](https://support.google.com/youtube/thread/134791097/update-to-youtube-dislike-counts) on December 13th, 2021, removing any ability to judge the quality of content before watching.
2021-11-15 09:06:59 +01:00
## What it Does
2022-01-02 22:40:43 +03:00
With the removal of dislike stats from the YouTube API, our backend switched to using a combination of scraped dislike stats, estimates extrapolated from extension user data.
2022-01-16 19:36:22 +03:00
[FAQ](https://github.com/Anarios/return-youtube-dislike/blob/main/Docs/FAQ.md)
2021-11-28 03:46:23 +05:30
## Why it Matters
You can learn more at our website at: [returnyoutubedislike.com](https://www.returnyoutubedislike.com/)
2021-11-15 09:06:59 +01:00
2022-01-03 11:39:21 +03:00
2021-12-20 19:59:24 +07:00
## API documentation
2021-12-31 19:15:12 +00:00
Third-party use of this open API is allowed with the following restrictions:
2021-12-20 19:59:24 +07:00
2022-01-03 15:56:23 +03:00
2022-02-04 21:28:47 +03:00
- **Attribution**: This project should be clearly attributed with a link to [returnyoutubedislike.com](https://returnyoutubedislike.com/).
2021-12-20 19:59:24 +07:00
- **Rate Limiting**: There are per client rate limits in place of 100 per minute and 10'000 per day. This will return a *429* status code indicating that your application should back off.
The API is accessible over the following base URL:
https://returnyoutubedislikeapi.com
List of available endpoints is available here:
https://returnyoutubedislikeapi.com/swagger/index.html
### Get votes
Example to get votes of a given YouTube video ID:
`/votes?videoId=kxOuG8jMIgI`
```json
{
"id": "kxOuG8jMIgI",
"dateCreated": "2021-12-20T12:25:54.418014Z",
"likes": 27326,
"dislikes": 498153,
"rating": 1.212014408444885,
"viewCount": 3149885,
"deleted": false
}
```
2022-01-03 22:04:54 +00:00
2021-12-20 19:59:24 +07:00
None existing YouTube ID will return status code *404* "Not Found".
Wrong formed YouTube ID will return *400* "Bad Request".
2021-12-04 09:59:39 +00:00
2021-12-20 21:20:53 +03:00
2022-01-03 11:39:21 +03:00
<!---
2021-12-20 19:59:24 +07:00
## API documentation
2021-12-27 14:36:38 -05:00
You can view all documentation on our website.
2022-01-03 11:39:21 +03:00
[https://returnyoutubedislike.com/documentation/](https://returnyoutubedislike.com/documentation/) -->
2021-12-20 21:20:53 +03:00
2021-12-20 21:37:33 +03:00
2021-11-28 03:46:23 +05:30
## Contributing
2021-11-27 23:14:20 +03:00
2021-11-28 02:44:58 +03:00
Please read the [contribution guide.](https://github.com/Anarios/return-youtube-dislike/blob/main/CONTRIBUTING.md)
2021-11-27 23:14:20 +03:00
2022-01-08 23:31:44 +05:30
## Support this project!
2021-11-23 19:09:33 +03:00
2022-01-08 23:31:44 +05:30
You can support this project by donating to us on the link below:
2021-12-13 15:52:41 +03:00
[Donate](https://returnyoutubedislike.com/donate)
2021-11-24 01:10:35 +03:00
2021-12-15 03:10:03 +03:00
## Sponsors
[Piepacker](https://piepacker.com)
[nodetube](https://github.com/mayeaux/nodetube)
trig404
2021-12-20 13:46:40 +03:00
[Peter33](https://www.youtube.com/watch?v=G5kzUpWAusI)
2021-12-20 13:47:51 +03:00
2021-12-20 13:46:40 +03:00
[Seed4.Me VPN](https://www.seed4.me/users/register?gift=ReturnYoutubeDislike)
2021-12-15 03:10:03 +03:00
2022-01-11 23:09:37 +03:00
[PocketTube](https://yousub.info/?utm_source=returnyoutubedislike)