Dropbox Media Manager
This extension lets you preview and download music and video from public Dropbox links
Cos'è Dropbox Media Manager?
Dropbox Media Manager è un'estensione di Chrome sviluppata da The Pure Mix, e la sua funzione principale è "This extension lets you preview and download music and video from public Dropbox links".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Dropbox Media Manager
Scarica i file di estensione Dropbox Media Manager 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 lets you play video, stream audio in the background, and download public media from Dropbox right from your Chrome browser.
Informazioni di Base sull'Estensione
Nome | |
ID | modefhpgbcaanajdddifiefofjfiebhe |
URL Ufficiale | https://chrome.google.com/webstore/detail/dropbox-media-manager/modefhpgbcaanajdddifiefofjfiebhe |
Descrizione | This extension lets you preview and download music and video from public Dropbox links |
Dimensione del File | 13.18 KB |
Conteggio Installazioni | 240 |
Versione Corrente | 2.1 |
Ultimo Aggiornamento | 2018-05-04 |
Data di Pubblicazione | 2018-05-04 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | The Pure Mix |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://www.thepuremix.com |
URL della Pagina di Aiuto | http://www.thepuremix.com |
URL della Pagina della Politica sulla Privacy | http://thepuremix.com/privacy |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Dropbox Media Manager", "short_name": "DBox Mng", "description": "This extension lets you preview and download music and video from public Dropbox links", "version": "2.1", "minimum_chrome_version": "16.0.884", "icons": { "128": "icon128.png" }, "permissions": [ "downloads", "*:\/\/www.dropbox.com\/*" ], "background": { "scripts": [ "back.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.dropbox.com\/*" ], "js": [ "popup.js" ] } ], "page_action": { "default_title": "Only visible on Dropbox.com", "default_icon": { "19": "icon19.png", "38": "icon38.png" }, "default_popup": "popup.html" } } |