Dropbox Media Manager

Dropbox Media Manager

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

Additional files are visible only to premium users

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"
  }
}