Redirect Shorts
Redirects youtube shorts to the normal player
Cos'è Redirect Shorts?
Redirect Shorts è un'estensione di Chrome sviluppata da manas.bejj, e la sua funzione principale è "Redirects youtube shorts to the normal player".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Redirect Shorts
Scarica i file di estensione Redirect 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
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.
Informazioni di Base sull'Estensione
Nome | Redirect Shorts |
ID | lncinpfgcgmphkebnbfpogkgiaadphpi |
URL Ufficiale | https://chromewebstore.google.com/detail/redirect-shorts/lncinpfgcgmphkebnbfpogkgiaadphpi |
Descrizione | Redirects youtube shorts to the normal player |
Dimensione del File | 32.03 KB |
Conteggio Installazioni | 2,945 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2022-03-03 |
Data di Pubblicazione | 2022-03-03 |
Valutazione | 4.32/5 Totale 28 Valutazioni |
Sviluppatore | manas.bejj |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } ] } |