Unsplash image downloader

Unsplash image downloader

Easily download images from unsplash.com with the width and height you specify. No more massive files that need to be resized!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "Unsplash DL",
  "version": "0.1.4",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "64": "images/icon-64.png",
    "128": "images/icon-128.png"
  },
  "author": "Ed Hinchliffe",
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js",
      "scripts/popup.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_icon": "images/icon-64.png",
    "default_title": "Download resized image",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "downloads",
    "https://unsplash.com/",
    "declarativeContent"
  ]
}