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",
"name": "Less Mixes for YouTube",
"description": "Prevent YouTube Mix generation for music videos",
"version": "3.0.0",
"manifest_version": 3,
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"declarativeNetRequestWithHostAccess",
"storage"
],
"background": {
"service_worker": "scripts\/background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"scripts\/content.js"
],
"run_at": "document_start"
}
],
"host_permissions": [
"*:\/\/*.youtube.com\/*"
]
}