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": "Focus Shield: No Shorts & Reels",
"version": "1.0.1",
"description": "Block Shorts & Reels on YouTube, Facebook, & Instagram. A simple tool to remove distracting short-form videos & reclaim your focus.",
"action": {
"default_title": "Focus Shield",
"default_popup": "popup.html",
"default_icon": {
"16": "logo.png",
"32": "logo.png"
}
},
"icons": {
"128": "logo.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*",
"*:\/\/*.facebook.com\/*",
"*:\/\/*.instagram.com\/*"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"web_accessible_resources": [
{
"resources": [
"logo.png"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"content-scripts\/youtube.js"
],
"run_at": "document_idle"
},
{
"matches": [
"*:\/\/*.facebook.com\/*"
],
"js": [
"content-scripts\/facebook.js"
],
"run_at": "document_idle"
},
{
"matches": [
"*:\/\/*.instagram.com\/*"
],
"js": [
"content-scripts\/instagram.js"
],
"run_at": "document_idle"
}
]
}