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",
"name": "Distraction free: Hide YouTube content",
"version": "1.2.3",
"manifest_version": 3,
"description": "Hide the YouTube content and be distraction free!",
"action": {
"default_title": "Be productive!",
"default_popup": "\/html\/popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"\/js\/content-script.js"
],
"run_at": "document_end"
}
],
"icons": {
"32": "\/img\/icon32.png",
"64": "\/img\/icon64.png",
"128": "\/img\/icon128.png"
},
"permissions": [
"activeTab",
"tabs",
"scripting",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "\/js\/background.js"
}
}