LIFX Web Control

LIFX Web Control

A Minimalist Chrome Extension to Control your LIFX Lights. With LIFX Web Control you can manage all your connected LIFX Lights.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LIFX Web Control",
  "short_name": "LIFX",
  "version": "0.15.4",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "description": "A Minimalist Chrome Extension to Control your LIFX Lights. With LIFX Web Control you can manage all your connected LIFX Lights.",
  "homepage_url": "http://whoisjuan.github.io/lifx",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "page": "src/bg/background.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icons/icon.png",
    "default_title": "browser action demo",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.whoisjuan.me/lifx/auth*",
        "http://whoisjuan.github.io/lifx/auth*"
      ],
      "js": [
        "libs/chrome-ex-oauth2/injection.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "tabs",
    "cookies",
    "notifications",
    "storage",
    "https://api.lifx.com/*",
    "https://lifx.com/",
    "https://community.lifx.com/*",
    "https://*.lifx.com/",
    "https://cloud.lifx.com/oauth/authorize",
    "https://cloud.lifx.com/oauth/token",
    "http://whoisjuan.github.io/lifx/auth*",
    "http://www.whoisjuan.me/lifx/auth*"
  ],
  "web_accessible_resources": [
    "iconslifx/*.png",
    "iconslifx/*.jpg",
    "colorpicker.css",
    "mdl/*.css",
    "mdl/*.js",
    "libs/*",
    "css/*",
    "js/jquery/*"
  ]
}