Dell Activity Light

Dell Activity Light

control the LED light on Dell chromebook

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Dell Activity Light",
  "description": "control the LED light on Dell chromebook",
  "version": "1.0.25",
  "icons": {
    "128": "images/ic_launch-128.png"
  },
  "app": {
    "background": {
      "scripts": [
        "js/dell.led.js",
        "js/merged.js",
        "main.js"
      ],
      "persistent": false
    }
  },
  "permissions": [
    "hid",
    {
      "usbDevices": [
        {
          "vendorId": 1240,
          "productId": 256
        },
        {
          "vendorId": 1240,
          "productId": 2856
        }
      ]
    }
  ],
  "commands": {
    "raise-hand": {
      "description": "Raise your hand or ask a question",
      "suggested_key": {
        "default": "Ctrl+Shift+4"
      }
    },
    "answer-question": {
      "description": "Answer question with color.",
      "suggested_key": {
        "default": "Ctrl+Shift+5"
      }
    },
    "random-question": {
      "description": "Share a thought with classmates.",
      "suggested_key": {
        "default": "Ctrl+Shift+6"
      }
    }
  }
}