Engage with video

Engage with video

Cyrano Chrome Extension makes it easier to create and distribute high definition media, all from the comfort of a web browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Engage with video",
  "version": "3.0.0.0",
  "short_name": "Cyrano Engage with video",
  "description": "Cyrano Chrome Extension makes it easier to create and distribute high definition media, all from the comfort of a web browser.",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "Cyrano Chrome Extension",
    "default_icon": {
      "16": "assets/img/cyrano_plugin_logo.png",
      "32": "assets/img/cyrano_plugin_logo.png",
      "48": "assets/img/cyrano_plugin_logo.png",
      "128": "assets/img/cyrano_plugin_logo.png"
    }
  },
  "icons": {
    "16": "assets/img/cyrano_plugin_logo.png",
    "32": "assets/img/cyrano_plugin_logo.png",
    "48": "assets/img/cyrano_plugin_logo.png",
    "128": "assets/img/cyrano_plugin_logo.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/css/fontawesome5-pro.css",
        "assets/html/getMediaPermissions.html",
        "assets/js/getCameraStream.js",
        "assets/html/getCameraStream.html",
        "assets/webfonts/*",
        "assets/js/recordMedia.js",
        "assets/html/recordMedia.html",
        "assets/css/style.css",
        "assets/js/moment-with-locales.min.js",
        "assets/js/previewMedia.js",
        "assets/html/previewMedia.html",
        "assets/js/plyr.js",
        "assets/css/bootstrap-461.min.css",
        "assets/js/options.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "oauth2": {
    "client_id": "935995596423-s4rt7u0ihjigrbieo950iu98kfv44gmu.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "permissions": [
    "tabs",
    "identity",
    "storage",
    "activeTab",
    "cookies",
    "scripting",
    "unlimitedStorage",
    "nativeMessaging"
  ],
  "host_permissions": [
    "https://www.cyranolab.io/*",
    "https://www.cyranoapp.io/*",
    "*://*/*"
  ],
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "http://*.cyranolab.io/*"
    ],
    "accepts_tls_channel_id": false
  },
  "background": {
    "service_worker": "backgroundPage.js",
    "type": "module"
  }
}