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": "NoYTVideo - Block YouTube\u2122 but keep YouTube Music\u2122",
"version": "1.3",
"description": "Block YouTube\u2122 videos while keeping YouTube Music\u2122 accessible. Helps you make mindful choices about your time.",
"permissions": [
"storage",
"tabs",
"notifications"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"css": [
"content.css"
],
"js": [
"content.js"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"redirect.html",
"popup.js",
"theme.js",
"reflection.js",
"scroll.js"
],
"matches": [
"*:\/\/*.youtube.com\/*"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/block-Photoroom.png",
"48": "icons\/block-Photoroom.png",
"128": "icons\/block-Photoroom.png"
}
},
"icons": {
"16": "icons\/block-Photoroom.png",
"48": "icons\/block-Photoroom.png",
"128": "icons\/block-Photoroom.png"
}
}