CRI Playlist

CRI Playlist

My first Chrome App.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CRI Playlist",
  "description": "My first Chrome App.",
  "version": "0.6",
  "app": {
    "background": {
      "scripts": [
        "background.js",
        "test.js"
      ]
    }
  },
  "file_handlers": {
    "any": {
      "extensions": [
        "*"
      ]
    }
  },
  "sandbox": {
    "pages": [
      "window.html"
    ]
  },
  "icons": {
    "16": "16.png",
    "128": "128.png"
  },
  "permissions": [
    "storage",
    "webview"
  ],
  "offline_enabled": true,
  "kiosk_enabled": true
}