yt-playlist-features/manifest.firefox.json

37 lines
829 B
JSON

{
"manifest_version": 3,
"name": "YT Playlist Features",
"version": "0.1.1",
"description": "Extract and work with YouTube playlist data",
"permissions": ["storage"],
"background": {
"scripts": ["background/service-worker.js"]
},
"content_scripts": [
{
"matches": ["*://www.youtube.com/*"],
"js": ["content/index.js"],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "options/options.html"
},
"options_ui": {
"page": "options/options.html",
"open_in_tab": false
},
"web_accessible_resources": [
{
"resources": ["injected/page-script.js"],
"matches": ["*://www.youtube.com/*"]
}
],
"browser_specific_settings": {
"gecko": {
"id": "yt-playlist-features@example.com",
"strict_min_version": "133.0"
}
}
}