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 Comment Hide",
"version": "2.0.0",
"description": "This Chrome extension hides YouTube comments for a distraction-free viewing experience.",
"icons": {
"16": "images\/icon-16.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
},
"content_scripts": [
{
"js": [
"scripts\/constants.js",
"scripts\/content.js"
],
"matches": [
"https:\/\/www.youtube.com\/*"
]
}
],
"permissions": [
"storage"
],
"action": {
"default_title": "Toggle Enable\/Disable"
},
"background": {
"service_worker": "scripts\/background.js"
}
}