Add Return YouTube Dislike extension example

Add a new example extension that displays YouTube dislike counts using the public Return YouTube Dislike API. This is a simplified port of the Anarios/return-youtube-dislike project adapted for Nebula's native extension runtime (content-script only, no Chrome APIs). Includes proper attribution and respects rate limits and GPL-3.0 licensing requirements.
This commit is contained in:
Andrew Zambazos
2026-07-12 20:55:03 +12:00
parent 924529807f
commit e270ba40d0
5 changed files with 1244 additions and 0 deletions
@@ -0,0 +1,21 @@
{
"id": "return-youtube-dislike",
"name": "Return YouTube Dislike",
"version": "1.0.0",
"description": "Shows YouTube dislike counts using the Return YouTube Dislike API. Based on https://github.com/Anarios/return-youtube-dislike",
"enabled": true,
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*",
"*://youtube.com/*",
"*://*.youtu.be/*",
"*://youtu.be/*",
"*://*.youtube-nocookie.com/*"
],
"js": ["content.js"],
"css": ["content.css"],
"run_at": "document_end"
}
]
}