Inspect and view changes in Deshortify-YT 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": "Deshortify",
"version": "1.1",
"description": "Automatically makes Youtube shorts appear as normal videos",
"homepage_url": "https://github.com/phlip0ph/deshortify",
"icons": {
"48": "icon.png"
},
"content_scripts": [
{
"js": [
"deshortify.js"
],
"matches": [
"*://*.youtube.com/shorts/*"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"*://*.youtube.com/shorts/*",
"tabs",
"webNavigation"
],
"browser_specific_settings": {
"gecko": {
"id": "{258fdbd8-4e45-4d55-baeb-81de0445c354}"
}
}
}