LeaveTheMeeting

LeaveTheMeeting

Meeting assistant that enables highly productive meetings

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LeaveTheMeeting",
  "author": "Vladyslav Babenko",
  "version": "1.1.6",
  "manifest_version": 2,
  "minimum_chrome_version": "65",
  "description": "Meeting assistant that enables highly productive meetings",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "LeaveTheMeeting",
    "default_popup": "iconPopup/iconPopup.html"
  },
  "content_scripts": [
    {
      "js": [
        "dist/client.prod.js"
      ],
      "css": [
        "dist/style.css"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "https://hangouts.google.com/*",
        "https://meet.google.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    "animals/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "icons": {
    "48": "ltm_logo.png"
  },
  "permissions": [
    "identity",
    "tabs",
    "https://api.leavethemeeting.com/*"
  ],
  "oauth2": {
    "client_id": "699022277640-nh11pmsd5j6oflciu9lj96jlb6i06aed.apps.googleusercontent.com",
    "scopes": [
      "profile",
      "email"
    ]
  }
}