Mute Perfect

Mute Perfect

By Nithin S

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Mute Perfect",
  "version": "0.1.0",
  "description": "By Nithin S",
  "icons": {
    "128": "icons/icon.png"
  },
  "browser_action": {
    "default_icon": "icons/icon.png",
    "default_title": "Mute Perfect",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://teams.microsoft.com/*",
        "https://meet.google.com/*",
        "https://*.zoom.us/*"
      ],
      "js": [
        "js/contentscriptMute.js"
      ],
      "css": [
        "css/contentStyle.css"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}