Dropbox Media Manager
This extension lets you preview and download music and video from public Dropbox links
Wat is Dropbox Media Manager?
Dropbox Media Manager is een Chrome-extensie ontwikkeld door The Pure Mix, en de belangrijkste functie is "This extension lets you preview and download music and video from public Dropbox links".
Extensie Screenshots
Download het CRX-bestand van de extensie Dropbox Media Manager
Download Dropbox Media Manager-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension lets you play video, stream audio in the background, and download public media from Dropbox right from your Chrome browser.
Basisinformatie over de Extensie
Naam | |
ID | modefhpgbcaanajdddifiefofjfiebhe |
Officiële URL | https://chrome.google.com/webstore/detail/dropbox-media-manager/modefhpgbcaanajdddifiefofjfiebhe |
Beschrijving | This extension lets you preview and download music and video from public Dropbox links |
Bestandsgrootte | 13.18 KB |
Aantal Installaties | 240 |
Huidige Versie | 2.1 |
Laatst Bijgewerkt | 2018-05-04 |
Publicatiedatum | 2018-05-04 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | The Pure Mix |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://www.thepuremix.com |
Help Pagina-URL | http://www.thepuremix.com |
URL van de Privacybeleid Pagina | http://thepuremix.com/privacy |
Ondersteunde Talen | 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" } } |