Inspect and view changes in Block Shorts - Remove YouTube Shorts 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": 2,
"name": "Block Shorts - Remove YouTube Shorts",
"description": "Block YouTube Shorts for a clean, distraction-free YouTube experience. Enjoy uninterrupted, long-form content.",
"version": "1.0.1",
"permissions": [
"storage",
"tabs",
"management",
"webRequest",
"webRequestBlocking",
"*://*.youtube.com/*",
"<all_urls>",
"declarativeNetRequestWithHostAccess"
],
"browser_action": {
"default_popup": "popup.html",
"default_title": "Block Shorts"
},
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*",
"<all_urls>"
],
"js": [
"no-youtube-shorts-content-script.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"background": {
"scripts": [
"no-youtube-shorts-background-script.js"
],
"persistent": true
},
"icons": {
"48": "assets/img/logo48.png",
"128": "assets/img/logo128.png"
},
"web_accessible_resources": [
"assets/no-youtube-shorts.css"
],
"applications": {
"gecko": {
"id": "block-shorts-remove-youTube-shorts@extensions.local",
"strict_min_version": "58.0"
}
}
}