- Implement content script to identify member-only videos on YouTube - Create popup interface for managing a channel whitelist - Add necessary icons and manifest configuration
24 lines
536 B
JSON
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"
|
|
}
|
|
}
|