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:
@@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user