Chrome Sign Builder

Chrome Sign Builder

Chrome Sign Builder is a digital signage utility that allows you to schedule and display content across your managed Chrome device…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.8.2",
  "name": "Chrome Sign Builder",
  "minimum_chrome_version": "36",
  "offline_enabled": true,
  "kiosk_enabled": true,
  "icons": {
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "app": {
    "background": {
      "scripts": [
        "js/plugin_system/js/hub.js",
        "js/plugin_system/js/interfaces.js",
        "js/plugin_system/js/message.js",
        "js/plugin_system/js/plugin_interface.js",
        "js/plugin_system/js/plugin.js",
        "js/plugin_system/js/plugin_manager.js",
        "js/plugin_system/js/plugin_proxy.js",
        "js/plugin_system/js/receiver.js",
        "js/plugin_system/js/receiver_local.js",
        "js/plugin_system/js/receiver_messaging.js",
        "js/plugin_system/js/rpc_callee.js",
        "js/plugin_system/js/rpc_caller.js",
        "js/plugin_system/js/rpc_hub.js",
        "js/plugin_system/js/sender.js",
        "js/plugin_system/js/sender_local.js",
        "js/plugin_system/js/sender_messaging.js",
        "js/plugin_system/js/utils.js",
        "plugins/youtube/js/plugin.js",
        "plugins/drive/js/plugin.js",
        "js/background.js"
      ]
    }
  },
  "storage": {
    "managed_schema": "schema.json"
  },
  "permissions": [
    {
      "fileSystem": [
        "write"
      ]
    },
    "storage",
    "system.display",
    "power",
    "unlimitedStorage",
    "videoCapture",
    "webview",
    "http://*/*",
    "https://*/*"
  ],
  "webview": {
    "partitions": [
      {
        "name": "*",
        "accessible_resources": [
          "no_content.html",
          "no_policy.html",
          "css/no-content-style.css"
        ]
      }
    ]
  }
}