Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "YouTube Easy Unsubscribe",
"version": "1.1",
"description": "Easily unsubscribe from YouTube channels with checkboxes",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"activeTab",
"storage",
"tabs",
"sidePanel"
],
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"https:\/\/www.youtube.com\/*"
],
"action": {
"default_title": "YouTube Easy Unsubscribe"
},
"side_panel": {
"default_path": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"content.js"
],
"css": [
"styles.css"
]
}
]
}