MuteIntercom

MuteIntercom

Mute all sound notifications from Intercom.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MuteIntercom",
  "description": "Mute all sound notifications from Intercom.",
  "version": "1.0",
  "author": "Wojtek Witkowski <[email protected]>",
  "homepage_url": "https://github.com/rayfeed/muteintercom",
  "browser_action": {
    "default_icon": "[email protected]",
    "default_popup": "mute.html",
    "default_title": "Mute Intercom Sounds"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "https://js.intercomcdn.com/*"
  ],
  "background": {
    "scripts": [
      "./mute.js"
    ]
  },
  "icons": {
    "128": "[email protected]"
  }
}