YouTube Shorts Remover
Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.
Cos'è YouTube Shorts Remover?
YouTube Shorts Remover è un'estensione di Chrome sviluppata da http://zalwicker.dev, e la sua funzione principale è "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Shorts Remover
Scarica i file di estensione YouTube Shorts Remover 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
Removes YouTube shorts so your subscription feed only shows long-form videos. Also has the ability to remove upcoming videos, mixes, watched videos, and other annoying things on YouTube. I just want to watch regular videos, and now you can too!
Informazioni di Base sull'Estensione
Nome | YouTube Shorts Remover |
ID | aefjgmckfgndnaopgholfhdabghaoajg |
URL Ufficiale | https://chrome.google.com/webstore/detail/youtube-shorts-remover/aefjgmckfgndnaopgholfhdabghaoajg |
Descrizione | Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch. |
Dimensione del File | 20.47 KB |
Conteggio Installazioni | 865 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2023-06-11 |
Data di Pubblicazione | 2022-12-06 |
Valutazione | 3.73/5 Totale 15 Valutazioni |
Sviluppatore | http://zalwicker.dev |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.zalwicker.dev/projects |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Shorts Remover", "version": "1.2", "description": "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.", "icons": { "32": "images\/noshorts32.png", "48": "images\/noshorts48.png", "128": "images\/noshorts128.png" }, "content_scripts": [ { "js": [ "scripts\/content.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "background": { "service_worker": "scripts\/background.js", "type": "module" }, "web_accessible_resources": [ { "resources": [ "images\/*" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "action": { "default_popup": "views\/settings.html" }, "permissions": [ "storage" ] } |