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": "YouEdit \u2014 YouTube Extension for Chrome",
"short_name": "YouEdit",
"version": "1.0.0",
"description": "Make YouTube simple\u2014hide comments, hide sidebar, loop video, scroll-to-volume, one-click screenshots.",
"permissions": [
"storage",
"activeTab"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"icons": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"content\/content.js"
],
"css": [
"content\/content.css"
],
"run_at": "document_idle"
}
]
}