Chrome OS Wallpaper Info

Chrome OS Wallpaper Info

Sets wallpaper background to useful device info.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chrome OS Wallpaper Info",
  "short_name": "CrOS WP Info",
  "description": "Sets wallpaper background to useful device info.",
  "version": "1.50",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "minimum_chrome_version": "71",
  "permissions": [
    "background",
    "enterprise.deviceAttributes",
    "enterprise.hardwarePlatform",
    "alarms",
    "system.memory",
    "system.cpu",
    "system.network",
    "system.storage",
    "wallpaper",
    "system.display",
    "storage",
    "unlimitedStorage",
    "identity",
    "identity.email"
  ],
  "storage": {
    "managed_schema": "schema.json"
  }
}