Inspect and view changes in YouTube Shorts to Normal URL 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 to Normal URL",
"version": "3.1",
"browser_specific_settings": {
"gecko": {
"id": "emvi.marko@gmail.com",
"strict_min_version": "48.0"
}
},
"description": "Changes YouTube Shorts URL to normal, for example\n https://www.youtube.com/shorts/x9goh0s1ElA -> https://www.youtube.com/watch?v=x9goh0s1ElA",
"icons": {
"48": "icons/border-48.png"
},
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"change.js"
]
}
]
}