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 One-Click Unsubscribe",
"short_name": "YTB Unsubscribe",
"description": "Quickly unsubscribe from all YouTube channels with adjustable speed. Clean your feed with one click!",
"version": "1.1.1",
"action": {
"default_popup": "popup.html",
"default_title": "YouTube One-Click Unsubscribe"
},
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons\/icon.png",
"32": "icons\/icon.png",
"48": "icons\/icon.png",
"128": "icons\/icon.png"
},
"permissions": [
"tabs",
"storage"
],
"host_permissions": [
"https:\/\/www.youtube.com\/feed\/channels*",
"https:\/\/ytbunsub-pay.aikc.net\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/feed\/channels*"
],
"js": [
"unsubscribed.js"
],
"run_at": "document_idle"
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
}
}