1
0
ANTI-BS/manifest.json
lordlogo2002 4bbbcd8040 Add content script and popup for channel whitelist management
- Implement content script to identify member-only videos on YouTube
- Create popup interface for managing a channel whitelist
- Add necessary icons and manifest configuration
2026-01-19 18:55:43 +01:00

24 lines
536 B
JSON

{
"manifest_version": 3,
"name": "ANTI-BS",
"description": "for to long youtubers thought we are stupid, now we just ignore them. let them know we are not.",
"version": "0.1.0",
"author": "Chipperfluff (Jack)",
"repo": "<placeholder for now>",
"org": "Chipperfluff",
"permissions": ["storage"],
"host_permissions": ["https://www.youtube.com/*"],
"content_scripts": [
{
"matches": ["https://www.youtube.com/*"],
"js": ["content.js"]
}
],
"action": {
"default_popup": "popup.html"
}
}