Seemiyah Player v2

Seemiyah Player v2

The official Seemiyah player to start your own screensaver in the cloud.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Seemiyah Player v2",
  "version": "2.0",
  "description": "The official Seemiyah player to start your own screensaver in the cloud.",
  "manifest_version": 2,
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ],
      "persistent": false
    }
  },
  "icons": {
    "16": "seemiyah-16.png",
    "128": "seemiyah-128.png"
  },
  "permissions": [
    "http://www.seemiyah.com/",
    "http://*.seemiyah.com/",
    "*://*.seemiyah.com",
    "webview",
    "cookies",
    "alwaysOnTopWindows",
    "fullscreen"
  ],
  "webview": {
    "partitions": [
      {
        "name": "static",
        "accessible_resources": [
          "start.html"
        ]
      },
      {
        "name": "trusted*",
        "accessible_resources": [
          "*.html",
          "*.png",
          "*.js"
        ]
      }
    ]
  },
  "minimum_chrome_version": "28",
  "content_scripts": [
    {
      "matches": [
        "http://www.google.com/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/framework7.js",
        "seemiyah.js"
      ]
    }
  ]
}