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 Shorts Blocker",
"version": "1.0.0",
"description": "Completely blocks Youtube Shorts from appearing on the youtube homepage",
"permissions": [
"tabs",
"storage"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"content.js"
]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"action": {
"default_title": "Click Me",
"default_popup": "options.html"
},
"icons": {
"16": "images\/image16.png",
"32": "images\/image32.png",
"48": "images\/image48.png",
"128": "images\/image128.png"
}
}