LIFX Lights Control

LIFX Lights Control

Control your LIFX lights straight from your browser!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "LIFX Lights Control",
  "short_name": "LIFX",
  "description": "Control your LIFX lights straight from your browser!",
  "author": "Asa Kahn",
  "version": "1.0.2",
  "icons": {
    "16": "/images/icon16.png",
    "48": "/images/icon48.png",
    "128": "/images/icon128.png"
  },
  "action": {
    "default_icon": "/images/icon.png",
    "default_popup": "popup.html",
    "default_title": "LIFX Lights Control"
  },
  "host_permissions": [
    "https://api.lifx.com/*",
    "https://lifx.com/",
    "https://*.lifx.com/"
  ],
  "permissions": [],
  "content_scripts": [
    {
      "js": [
        "./js/iro.min.js",
        "./js/main.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}