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": "FocusTube - Block YouTube Shorts",
"description": "Block YouTube Shorts and reclaim your focus.",
"version": "1.0",
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.svg",
"48": "icons\/icon48.svg",
"128": "icons\/icon128.svg"
}
},
"icons": {
"16": "icons\/icon16.svg",
"48": "icons\/icon48.svg",
"128": "icons\/icon128.svg"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"storage",
"tabs"
]
}