Dropbox Media Manager
This extension lets you preview and download music and video from public Dropbox links
Apa itu Dropbox Media Manager?
Dropbox Media Manager adalah ekstensi Chrome yang dikembangkan oleh The Pure Mix, dan fitur utamanya adalah "This extension lets you preview and download music and video from public Dropbox links".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Dropbox Media Manager
Unduh file ekstensi Dropbox Media Manager dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
This extension lets you play video, stream audio in the background, and download public media from Dropbox right from your Chrome browser.
Informasi Dasar Ekstensi
Nama | |
ID | modefhpgbcaanajdddifiefofjfiebhe |
URL Resmi | https://chrome.google.com/webstore/detail/dropbox-media-manager/modefhpgbcaanajdddifiefofjfiebhe |
Deskripsi | This extension lets you preview and download music and video from public Dropbox links |
Ukuran File | 13.18 KB |
Jumlah Instalasi | 240 |
Versi Saat Ini | 2.1 |
Terakhir Diperbarui | 2018-05-04 |
Tanggal Publikasi | 2018-05-04 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | The Pure Mix |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | http://www.thepuremix.com |
URL Halaman Bantuan | http://www.thepuremix.com |
URL Halaman Kebijakan Privasi | http://thepuremix.com/privacy |
Bahasa yang Didukung | 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" } } |