Chat Buzzer by DeskMoz

Chat Buzzer by DeskMoz

Chat Buzzer by DeskMoz generates the chat alert sound when the LiveChatInc/ Zopim chat(s) are not answered for the time you set.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chat Buzzer by DeskMoz",
  "description": "Chat Buzzer by DeskMoz generates the chat alert sound when the LiveChatInc/ Zopim chat(s) are not answered for the time you set.",
  "version": "1.5",
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "background": {
    "scripts": [
      "js/functions.js",
      "js/storage.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "img/icon-active.png",
      "38": "img/icon-active-scale2.png"
    },
    "default_title": "Chat Buzzer by DeskMoz",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "notifications",
    "storage",
    "contextMenus",
    "*://deskmoz.com/",
    "*://dashboard.deskmoz.com/"
  ],
  "web_accessible_resources": [
    "img/icon-48.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://my.livechatinc.com/*",
        "*://dashboard.zopim.com/*"
      ],
      "js": [
        "js/observer.js"
      ],
      "run_at": "document_idle"
    }
  ]
}