No Shorts
Redirects YouTube Shorts to YouTube videos.
What is No Shorts?
No Shorts is a Chrome extension developed by Wock, and its main feature is "Redirects YouTube Shorts to YouTube videos.".
Extension Screenshots
Download No Shorts Extension CRX File
Download No 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
An extension that redirects YouTube short player urls to the normal YouTube player. I created this extension for my own use, as being unable to navigate short videos irritated me, and decided to publish it. It does one job, and only one job. The only permission it needs is tabs, to handle YouTube onsite redirects.
Extension Basic Information
Name | No Shorts |
ID | gepjlgfjbeimidbimhjljdncopgelebl |
Official URL | https://chromewebstore.google.com/detail/no-shorts/gepjlgfjbeimidbimhjljdncopgelebl |
Description | Redirects YouTube Shorts to YouTube videos. |
File Size | 12.74 KB |
Installation Count | 117 |
Current Version | 1.0 |
Last Updated | 2022-10-27 |
Publish Date | 2022-10-26 |
Rating | 4.20/5 Total 5 Ratings |
Developer | Wock |
[email protected] | |
Payment Type | free |
Supported Languages | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "No Shorts", "version": "1.0", "description": "Redirects YouTube Shorts to YouTube videos.", "permissions": [ "tabs" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "content_script.js" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_popup": "popup.html" } } |