Image Previewer for Dropbox

Image Previewer for Dropbox

Magnify thumbnail images in your Dropbox files folder.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Image Previewer for Dropbox",
  "description": "Magnify thumbnail images in your Dropbox files folder.",
  "version": "1.0",
  "short_name": "Magnify thumbnail images in your Dropbox files folder.",
  "icons": {
    "16": "drip16.png",
    "48": "drip48.png",
    "128": "drip128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.dropbox.com/*"
      ],
      "js": [
        "drip.js"
      ],
      "run_at": "document_end"
    }
  ]
}