Files
NebulaBrowser/examples/extensions/return-youtube-dislike/manifest.json
T
Andrew Zambazos e270ba40d0 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.
2026-07-12 20:55:03 +12:00

22 lines
570 B
JSON

{
"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"
}
]
}