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": "Remove Shorts",
"description": "This is an extension that you can use to block Youtube Shorts and remove Shorts reccomendations",
"version": "1.0",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"*:\/\/*.youtube.com\/*"
]
}
],
"icons": {
"16": "images\/logo.png",
"48": "images\/logo.png",
"128": "images\/logo.png"
},
"action": {
"default_icon": {
"16": "images\/logo.png",
"48": "images\/logo.png",
"128": "images\/logo.png"
},
"default_popup": "popup.html",
"default_title": "Remove Shorts"
},
"permissions": [
"activeTab",
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess",
"storage",
"webNavigation"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"web_accessible_resources": [
{
"resources": [
"removed.html, blocked.html,"
],
"matches": [
"*:\/\/*\/*"
]
}
]
}