Inspect and view changes in YouTube Shorts Remover/Blocker 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
{
"description": "A Firefox extension to hide YouTube Shorts",
"permissions": [
"activeTab"
],
"manifest_version": 2,
"name": "YouTube Shorts Remover",
"version": "1.0",
"homepage_url": "https://github.com/LouisKlimek/YoutubeShortsRemover",
"icons": {
"48": "icons/icon-48.png",
"128": "icons/icon-128.png",
"256": "icons/icon-256.png",
"512": "icons/icon-512.png"
},
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"shorts-remover.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{7b6224b7-5234-41ee-9066-fa33972e94e3}"
}
}
}