StandNote

StandNote

StandNote is your easy to use online meeting assistant that backs you up with automated meeting minutes for every conversation.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "StandNote",
  "version": "1.0.0",
  "description": "StandNote is your easy to use online meeting assistant that backs you up with automated meeting minutes for every conversation.",
  "short_name": "StandNote",
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "browser_action": {
    "default_popup": "html/popup.html",
    "default_icon": "assets/icon48.png"
  },
  "background": {
    "scripts": [
      "javascript/micPermission.js",
      "javascript/azure-speech-to-text.js",
      "javascript/microsoft.cognitiveservices.speech.sdk.bundle-min.js",
      "javascript/eventPage.js"
    ],
    "persistant": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "javascript/content.js"
      ],
      "css": [
        "css/content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "assets/*"
  ],
  "content_security_policy": "script-src 'self' https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js; object-src 'self'",
  "permissions": [
    "storage",
    "identity",
    "<all_urls>",
    "https://standnote.herokuapp.com/*",
    "tabs",
    "tabCapture"
  ],
  "oauth2": {
    "client_id": "337386111803-7o99c71aahdhtkffc5q0c316a4btgn48.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  }
}