Image File Viewer

Image File Viewer

Display image files in Chrome OS

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Image File Viewer",
  "description": "Display image files in Chrome OS",
  "version": "1",
  "manifest_version": 2,
  "offline_enabled": true,
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ],
      "persistent": false
    }
  },
  "file_handlers": {
    "text": {
      "extensions": [
        "basis",
        "exr",
        "hdr"
      ]
    }
  },
  "icons": {
    "128": "icon.png"
  }
}