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",
"manifest_version": 3,
"name": "YouTube Detoxifier: Delay Shorts & Hide Recommendations",
"version": "1.3",
"description": "Curbs YouTube addiction without blocking YouTube completely",
"permissions": [
"tabs",
"storage"
],
"action": {
"default_popup": "popup.html"
},
"host_permissions": [
"*:\/\/*.youtube.com\/*",
"https:\/\/youtube-detoxifier-server.westus2.cloudapp.azure.com:5000\/*"
],
"web_accessible_resources": [
{
"resources": [
"timer.html",
"timerstyles.css",
"timerscript.js"
],
"matches": [
"*:\/\/www.youtube.com\/*"
]
}
],
"icons": {
"16": "reading-time_images\/icon-16.png",
"32": "reading-time_images\/icon-32.png",
"48": "reading-time_images\/icon-48.png",
"128": "reading-time_images\/icon-128.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"content.js"
]
}
]
}