YouTube++
This extension shows the publishing or uploading date of related youtube videos in sidebar.
Cos'è YouTube++?
YouTube++ è un'estensione di Chrome sviluppata da divyum, e la sua funzione principale è "This extension shows the publishing or uploading date of related youtube videos in sidebar.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube++
Scarica i file di estensione YouTube++ 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
Ever wondered if you could get the published date of related videos without even opening the videos in youtube, here is an extension which will solve this for you.
Informazioni di Base sull'Estensione
Nome | YouTube++ |
ID | mbaflkdlneldejanggphlhcepncjfaco |
URL Ufficiale | https://chromewebstore.google.com/detail/youtube++/mbaflkdlneldejanggphlhcepncjfaco |
Descrizione | This extension shows the publishing or uploading date of related youtube videos in sidebar. |
Dimensione del File | 229 KB |
Conteggio Installazioni | 2,716 |
Versione Corrente | 2.3.2 |
Ultimo Aggiornamento | 2019-11-12 |
Data di Pubblicazione | 2019-11-11 |
Valutazione | 3.77/5 Totale 52 Valutazioni |
Sviluppatore | divyum |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube++", "short_name": "YTD", "description": "This extension shows the publishing or uploading date of related youtube videos in sidebar.", "version": "2.3.2", "icons": { "48": "image\/icon48.png", "128": "image\/icon128.png" }, "permissions": [ "tabs" ], "background": { "persistent": true, "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "js": [ "js\/main.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "image\/loader_gif.gif" ] } |