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 Focus Mode: Block Shorts, Feed & Comments | Study Tool",
"description": "A Free & Open Source distraction blocker for productivity. Block YouTube Shorts, hide Home Feed, recommendations & comments.",
"version": "2.0.0",
"icons": {
"16": "icons\/icon-16.png",
"24": "icons\/icon-24.png",
"32": "icons\/icon-32.png",
"64": "icons\/icon-64.png",
"128": "icons\/icon-128.png"
},
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "icons\/icon-16.png",
"24": "icons\/icon-24.png",
"32": "icons\/icon-32.png",
"64": "icons\/icon-64.png",
"128": "icons\/icon-128.png"
}
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"scripts\/features\/on-watch-recommendations.js",
"scripts\/features\/home-feed.js",
"scripts\/features\/shorts.js",
"scripts\/storage.js",
"scripts\/content.js"
],
"css": [
"styles\/content.css"
],
"run_at": "document_start"
}
]
}