Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "YouTube Feed Customizer",
"version": "1.0",
"description": "Customize your YouTube feed to show only specified channel videos",
"permissions": [
"storage",
"activeTab"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*"
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": ".\/icons\/16x16.png",
"48": ".\/icons\/32x32.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"content.js"
]
}
],
"action": {
"default_popup": "popup.html"
}
}