Dropbox Media Manager
This extension lets you preview and download music and video from public Dropbox links
Hvad er Dropbox Media Manager?
Dropbox Media Manager er en Chrome-udvidelse udviklet af The Pure Mix, og dens hovedfunktion er "This extension lets you preview and download music and video from public Dropbox links".
Udvidelsesskærmbilleder
Download Dropbox Media Manager-udvidelses-CRX-fil
Download Dropbox Media Manager-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
This extension lets you play video, stream audio in the background, and download public media from Dropbox right from your Chrome browser.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | modefhpgbcaanajdddifiefofjfiebhe |
Officiel URL | https://chrome.google.com/webstore/detail/dropbox-media-manager/modefhpgbcaanajdddifiefofjfiebhe |
Beskrivelse | This extension lets you preview and download music and video from public Dropbox links |
Filstørrelse | 13.18 KB |
Antal Installationer | 240 |
Nuværende Version | 2.1 |
Senest Opdateret | 2018-05-04 |
Udgivelsesdato | 2018-05-04 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | The Pure Mix |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | http://www.thepuremix.com |
Hjælpeside-URL | http://www.thepuremix.com |
URL til Fortrolighedspolitik Side | http://thepuremix.com/privacy |
Understøttede Sprog | 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" } } |