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": "Hide YouTube Comments",
"version": "0.7.2",
"manifest_version": 3,
"content_scripts": [
{
"css": [
"youtube.css"
],
"js": [
"script.js"
],
"matches": [
"http:\/\/*.youtube.com\/*",
"https:\/\/*.youtube.com\/*"
],
"run_at": "document_start"
}
],
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/16.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
}
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"description": "An extension to hide YouTube comments for a cleaner viewing experience."
}