Redirect Shorts
Redirects youtube shorts to the normal player
What is Redirect Shorts?
Redirect Shorts is a Chrome extension developed by manas.bejj, and its main feature is "Redirects youtube shorts to the normal player".
Extension Screenshots
Download Redirect Shorts Extension CRX File
Download Redirect Shorts extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension replaces the "/shorts/" from the url with "watch?v=" to play your shorts video on the normal player which is more user friendly on a computer.
Extension Basic Information
Name | Redirect Shorts |
ID | lncinpfgcgmphkebnbfpogkgiaadphpi |
Official URL | https://chromewebstore.google.com/detail/redirect-shorts/lncinpfgcgmphkebnbfpogkgiaadphpi |
Description | Redirects youtube shorts to the normal player |
File Size | 32.03 KB |
Installation Count | 2,945 |
Current Version | 1.0 |
Last Updated | 2022-03-03 |
Publish Date | 2022-03-03 |
Rating | 4.32/5 Total 28 Ratings |
Developer | manas.bejj |
[email protected] | |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Redirect Shorts", "version": "1.0", "manifest_version": 3, "description": "Redirects youtube shorts to the normal player", "icons": { "16": "16.png", "48": "48.png", "128": "128.png", "256": "256.png" }, "host_permissions": [ "*:\/\/www.youtube.com\/shorts\/*" ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "yt.js" ], "run_at": "document_start" } ] } |