Inspect and view changes in YouTube Shorts Blocker-Focus source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "YouTube Shorts Blocker",
"version": "1.0",
"description": "Blocks YouTube Shorts from being displayed.",
"permissions": [
"activeTab",
"webNavigation",
"scripting"
],
"host_permissions": [
"*://www.youtube.com/*"
],
"content_scripts": [
{
"matches": [
"*://www.youtube.com/*"
],
"js": [
"content.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"icons": {
"48": "icon48.webp"
},
"action": {
"default_popup": "popup.html",
"default_icon": "icon48.webp"
},
"browser_specific_settings": {
"gecko": {
"id": "{cc538622-389d-4dc7-b0e4-4ea83d71aa31}"
}
}
}