No YouTube Shorts
Removes all Shorts from YouTube
Cos'è No YouTube Shorts?
No YouTube Shorts è un'estensione di Chrome sviluppata da Ben, e la sua funzione principale è "Removes all Shorts from YouTube".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione No YouTube Shorts
Scarica i file di estensione No YouTube 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
Tired of the YouTube Shorts? No problem, this extension has your back and removes them from the YouTube page! New in version 0.6.2: - Bugfixes Bugs? Improvement ideas? Feel free to message me.
Informazioni di Base sull'Estensione
Nome | No YouTube Shorts |
ID | hjfkenebldkfgibelglepinlabpjfbll |
URL Ufficiale | https://chromewebstore.google.com/detail/no-youtube-shorts/hjfkenebldkfgibelglepinlabpjfbll |
Descrizione | Removes all Shorts from YouTube |
Dimensione del File | 37.34 KB |
Conteggio Installazioni | 60,000 |
Versione Corrente | 0.6.2 |
Ultimo Aggiornamento | 2023-09-27 |
Data di Pubblicazione | 2022-03-03 |
Valutazione | 4.31/5 Totale 240 Valutazioni |
Sviluppatore | Ben |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "No YouTube Shorts", "description": "Removes all Shorts from YouTube", "version": "0.6.2", "action": { "default_popup": "popup.html", "default_title": "No YouTube Shorts" }, "manifest_version": 3, "default_locale": "en", "permissions": [ "declarativeContent", "storage", "tabs", "management" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "no-youtube-shorts-content-script.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "service_worker": "no-youtube-shorts-background-script.js" }, "icons": { "48": "assets\/img\/logo48.png", "128": "assets\/img\/logo128.png" }, "web_accessible_resources": [ { "resources": [ "assets\/no-youtube-shorts.css" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ] } |