NHome extension

NHome extension

Smart home solutions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NHome extension",
  "version": "0.0.3",
  "manifest_version": 2,
  "description": "Smart home solutions",
  "icons": {
    "16": "img/icons/nhome-16.png",
    "128": "img/icons/nhome-128.png"
  },
  "browser_action": {
    "default_title": "nHome",
    "default_icon": "img/icons/nhome-16.png",
    "default_popup": "popup.html"
  },
  "author": "NHome team",
  "background": {
    "scripts": [
      "js/socket.io.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "storage",
    "background",
    "https://nhome.ba/api/"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.nhome.ba/*"
    ]
  }
}