No Shorts
Redirects YouTube Shorts to YouTube videos.
Cos'è No Shorts?
No Shorts è un'estensione di Chrome sviluppata da Wock, e la sua funzione principale è "Redirects YouTube Shorts to YouTube videos.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione No Shorts
Scarica i file di estensione No Shorts in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | No Shorts |
ID | gepjlgfjbeimidbimhjljdncopgelebl |
URL Ufficiale | https://chromewebstore.google.com/detail/no-shorts/gepjlgfjbeimidbimhjljdncopgelebl |
Descrizione | Redirects YouTube Shorts to YouTube videos. |
Dimensione del File | 12.74 KB |
Conteggio Installazioni | 117 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2022-10-27 |
Data di Pubblicazione | 2022-10-26 |
Valutazione | 4.20/5 Totale 5 Valutazioni |
Sviluppatore | Wock |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |