Dropbox Media Manager

This extension lets you preview and download music and video from public Dropbox links

什麼是Dropbox Media Manager?

Dropbox Media Manager是由The Pure Mix開發的Chrome擴展程式,該擴展的主要功能是“This extension lets you preview and download music and video from public Dropbox links”。

擴展截圖

screenshot

下載Dropbox Media Manager擴展crx文件

下載Dropbox Media Manager擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension lets you play video, stream audio in the background, and download public media from Dropbox right from your Chrome browser.                    

擴展基本資訊

名稱 Dropbox Media Manager Dropbox Media Manager
ID modefhpgbcaanajdddifiefofjfiebhe
官方網址 https://chrome.google.com/webstore/detail/dropbox-media-manager/modefhpgbcaanajdddifiefofjfiebhe
簡介 This extension lets you preview and download music and video from public Dropbox links
檔案大小 13.18 KB
安裝次數 240
目前版本 2.1
更新時間 2018-05-04
上架時間 2018-05-04
評分 5.00/5 共 2 次評分
開發者 The Pure Mix
電子郵箱 [email protected]
付費類型 free
擴展官網 http://www.thepuremix.com
說明頁面URL http://www.thepuremix.com
隱私政策頁面URL http://thepuremix.com/privacy
支援的語言 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"
    }
}