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": "Hide Shorts, Stories, Reels & Video",
"version": "1.5",
"description": "Hide Shorts, Stories, Reels & Videos from Facebook & YouTube. Control your content consumption with simple toggles.",
"permissions": [
"webNavigation",
"tabs",
"storage"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*",
"*:\/\/*.facebook.com\/*"
],
"author": {
"name": "Ibrahim Riaz",
"username": "itsibrahimriaz",
"email": "[email protected]"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*",
"*:\/\/www.facebook.com\/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"48": "images\/hide-shorts-reels48.png",
"128": "images\/hide-shorts-reels128.png",
"640": "images\/hide-shorts-reels.png"
},
"action": {
"default_popup": "popup.html"
}
}