Notifs for Meet™

Notifs for Meet™

Notifications and more for Google Meet™

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Notifs for Meet™",
  "version": "1.0.1",
  "description": "Notifications and more for Google Meet™",
  "icons": {
    "128": "images/meet.png"
  },
  "permissions": [
    "storage",
    "notifications",
    "downloads",
    "identity",
    "identity.email",
    "https://www.googleapis.com/*"
  ],
  "browser_action": {
    "default_icon": "images/meet.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "scripts/analytics.js",
      "scripts/jquery.min.js",
      "scripts/jquery.cookie.min.js",
      "scripts/push.min.js",
      "scripts/serviceWorker.min.js",
      "scripts/main.js",
      "scripts/receive.js"
    ]
  },
  "container": [
    "GOOGLE_DRIVE"
  ],
  "oauth2": {
    "client_id": "707599415783-8s03g6bnj0rkoaa07c831mb4s052cglj.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/drive.appdata",
      "https://www.googleapis.com/auth/drive.file"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "scripts/jquery.min.js",
        "scripts/listen.js",
        "scripts/dark-mode.js"
      ]
    }
  ],
  "manifest_version": 2,
  "offline_enabled": true,
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}