YouTube Playlist
This extension transforms a youtube page that contains a video with multiple songs into a playlist
Cos'è YouTube Playlist?
YouTube Playlist è un'estensione di Chrome sviluppata da Ivan Chub, e la sua funzione principale è "This extension transforms a youtube page that contains a video with multiple songs into a playlist".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Playlist
Scarica i file di estensione YouTube Playlist 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
If you would like to contribute, go here: https://github.com/ichub/youtube-playlist
Informazioni di Base sull'Estensione
Nome | |
ID | fpekldclcjpekfidkgfbgpffhbholbnd |
URL Ufficiale | https://chrome.google.com/webstore/detail/youtube-playlist/fpekldclcjpekfidkgfbgpffhbholbnd |
Descrizione | This extension transforms a youtube page that contains a video with multiple songs into a playlist |
Dimensione del File | 34.28 KB |
Conteggio Installazioni | 237 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2015-08-04 |
Data di Pubblicazione | 2015-08-04 |
Valutazione | 3.25/5 Totale 4 Valutazioni |
Sviluppatore | Ivan Chub |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Playlist", "description": "This extension transforms a youtube page that contains a video with multiple songs into a playlist", "version": "1.0", "permissions": [ "activeTab", "tabs", "https:\/\/www.youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "css": [ "injected.css" ], "js": [ "jquery.min.js", "injected.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "injected.html" ] } |