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": "NeatYT \u2013 Clean UI & Comment Search for YouTube",
"description": "NeatYT hides clutter, adds an inline comment search bar, and brings back YouTube dislike counts",
"version": "1.3",
"manifest_version": 3,
"icons": {
"16": "assets\/icons\/icon16.png",
"24": "assets\/icons\/icon24.png",
"32": "assets\/icons\/icon32.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
},
"action": {
"default_title": "NeatYT",
"default_popup": "src\/popup.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"src\/utils.js",
"src\/highlight.js",
"src\/content.js",
"src\/clean.js",
"src\/playback.js",
"src\/dislike.js"
],
"css": [
"src\/style.css"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"src\/styles\/layout.css"
],
"matches": [
"https:\/\/www.youtube.com\/*"
]
}
],
"permissions": [
"storage"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*",
"https:\/\/returnyoutubedislikeapi.com\/*"
],
"background": {
"service_worker": "src\/background.js"
}
}