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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}