24 lines
535 B
JSON
24 lines
535 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "YT Playlist Features",
|
|
"version": "0.1.0",
|
|
"description": "Extract and work with YouTube playlist data",
|
|
"permissions": [],
|
|
"background": {
|
|
"service_worker": "background/service-worker.js"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://www.youtube.com/*"],
|
|
"js": ["content/index.js"],
|
|
"run_at": "document_idle"
|
|
}
|
|
],
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": ["injected/page-script.js"],
|
|
"matches": ["*://www.youtube.com/*"]
|
|
}
|
|
]
|
|
}
|