Collab: Video calls in Notion— Daily API demo

Use the Daily API to embed and transcribe video calls directly in your Notion workspace.

Τι είναι το Collab: Video calls in Notion— Daily API demo;

Το Collab: Video calls in Notion— Daily API demo είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Daily, και η κύρια λειτουργία του είναι "Use the Daily API to embed and transcribe video calls directly in your Notion workspace.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Collab: Video calls in Notion— Daily API demo

Λήψη αρχείων επέκτασης Collab: Video calls in Notion— Daily API demo σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Note: Collab is using Chrome's manifest v2 for this extension, which is being deprecated later this year. V3 is currently not compatible with this extension. Please note this extension will no longer be available after manifest v2 stops being supported by Chrome. https://developer.chrome.com/docs/extensions/mv3/mv2-sunset/

---

With Daily Collab, users can:

- Collaborate faster with colleagues by starting video and audio-only calls in any Notion workspace page
- Transcribe video or audio-only call conversations directly into the Notion page for future reference (feature coming soon to Daily!)

To learn more about how to build a similar Chrome extension for yourself, visit our blog tutorials. www.daily.co/blog/tag/collab-chrome-extension/

To use Daily Collab: 

1. Visit any Notion page
2. Click on "Start live call"
3. A menu will appear: Choose whether you want your camera on/off, transcription on/off, and join the call

To authorize the transcription feature:
1. Visit any Notion page
2. Click the chevron button to view the authorization form
3. Have your Notion workspace admin authorize your workspace through the Admin form. Your admin will receive an access code to share with workspace members
4. Enter the access code in the Members form

---

About Daily:

Daily is a developer platform for building audio and video calls into any site or app. Our flexible APIs and Prebuilt video call embed allow you to build and deploy rapidly, so that you have more time to focus on your core product. Daily is trusted worldwide, from Fortune 500 companies to growth-stage startups.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Collab: Video calls in Notion— Daily API demo Collab: Video calls in Notion— Daily API demo
ID ikmjimibciifjefngaabnojnnlclfhnj
Επίσημο URL https://chrome.google.com/webstore/detail/collab-video-calls-in-not/ikmjimibciifjefngaabnojnnlclfhnj
Περιγραφή Use the Daily API to embed and transcribe video calls directly in your Notion workspace.
Μέγεθος Αρχείου 454 KB
Αριθμός Εγκαταστάσεων 91
Τρέχουσα Έκδοση 0.0.0.8
Τελευταία Ενημέρωση 2022-02-18
Ημερομηνία Δημοσίευσης 2021-08-15
Προγραμματιστής Daily
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.daily.co/blog/tag/collab-chrome-extension/
Διεύθυνση URL της Σελίδας Βοήθειας https://www.daily.co/contact/support
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Use the Daily API to embed and transcribe video calls directly in your Notion workspace.",
    "version": "0.0.0.8",
    "manifest_version": 2,
    "name": "Collab: Video calls in Notion\u2014 Daily API demo",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "permissions": [
        "https:\/\/daily-notion-api.vercel.app\/*",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.notion.so\/*"
            ],
            "exclude_matches": [
                "https:\/\/www.notion.so\/onboarding",
                "https:\/\/www.notion.so\/install-integration\/*",
                "https:\/\/www.notion.so\/my-integrations\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "icon-128.png",
        "icon-34.png"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}