Inspect and view changes in YouTube Shorts As Videos 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": "YouTube Shorts As Videos",
"version": "1.0",
"description": "Loads shorts as if they're any old YouTube video; NOT in YouTube's new 'short mode' (/watch instead of /shorts). Made specifically to prevent brain rot.",
"icons": {
"16": "icons/shorts_as_videos-16.png",
"24": "icons/shorts_as_videos-24.png",
"48": "icons/shorts_as_videos-48.png",
"96": "icons/shorts_as_videos-96.png"
},
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"shorts_as_videos.js"
],
"run_at": "document_start"
}
],
"browser_specific_settings": {
"gecko": {
"id": "{39036fcb-8761-45e6-a6e1-c78b932bb8a3}"
}
}
}