Set image as wallpaper

Set image as wallpaper

Source code is publicly available at https://github.com/beaufortfrancois/set-wallpaper-chrome-app Changelog: 1.4: - Shortened app…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Set image as wallpaper",
  "short_name": "Set wallpaper",
  "version": "1.4.1",
  "minimum_chrome_version": "43",
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "128": "128.png"
  },
  "file_handlers": {
    "image": {
      "types": [
        "image/png",
        "image/jpeg"
      ]
    }
  },
  "permissions": [
    "notifications",
    "wallpaper"
  ],
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ]
    }
  },
  "manifest_version": 2
}