Istation

Istation

Access the Istation environment with this application.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Istation",
  "short_name": "Istation",
  "description": "Access the Istation environment with this application.",
  "minimum_chrome_version": "47",
  "version": "208",
  "manifest_version": 2,
  "offline_enabled": false,
  "kiosk_enabled": true,
  "url_handlers": {
    "launch_from_html": {
      "matches": [
        "http://*.istation.com/Chrome*",
        "https://*.istation.com/Chrome*",
        "http://*.istation.com/secure/Chrome*",
        "https://*.istation.com/secure/Chrome*"
      ],
      "title": "Istation SSO"
    }
  },
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "*://*.istation.com/*"
    ]
  },
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ]
    }
  },
  "icons": {
    "16": "images/istation-16.png",
    "48": "images/istation-48.png",
    "128": "images/istation-128.png"
  },
  "permissions": [
    {
      "fileSystem": [
        "write"
      ]
    },
    "http://*.istation.com/",
    "https://*.istation.com/",
    "alarms",
    "system.cpu",
    "system.network",
    "system.memory",
    "system.storage",
    "clipboardWrite",
    "clipboardRead",
    "fullscreen",
    "overrideEscFullscreen",
    "unlimitedStorage",
    "storage",
    {
      "socket": [
        "tcp-listen:*:*",
        "tcp-connect",
        "resolve-host",
        "udp-bind:*:*",
        "udp-send-to:*:*"
      ]
    }
  ],
  "storage": {
    "managed_schema": "schema.json"
  }
}