Be tv Go

Be tv Go

Be tv Go for Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Be tv Go",
  "short_name": "Be tv Go",
  "description": "Be tv Go for Chrome",
  "icons": {
    "48": "icon_48x48.png",
    "128": "icon_128x128.png"
  },
  "version": "1.0",
  "note": "based on PPAPI 1.5.1",
  "manifest_version": 2,
  "nacl_modules": [
    {
      "path": "Player.nmf",
      "mime_type": "application/vnd.nagraqa.secureplayer.pepper.plugin"
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "minimum_chrome_version": "39.0.2171.71",
  "requirements": {
    "3D": {
      "features": [
        "webgl"
      ]
    }
  },
  "web_accessible_resources": [
    "*"
  ],
  "offline_enabled": true,
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "platforms": [
    {
      "nacl_arch": "x86-32",
      "sub_package_path": "_platform_specific/x86-32/"
    },
    {
      "nacl_arch": "x86-64",
      "sub_package_path": "_platform_specific/x86-64/"
    }
  ],
  "permissions": [
    "unlimitedStorage",
    "tabs",
    "power",
    "system.cpu",
    "system.display",
    "storage"
  ]
}