Wingman

This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.

Τι είναι το Wingman;

Το Wingman είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://strings.ai, και η κύρια λειτουργία του είναι "This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Wingman

Λήψη αρχείων επέκτασης Wingman σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Wingman for SDRs helps with real-time information on sales calls.                    

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

Όνομα Wingman Wingman
ID bepjjhbjcogelfnbkoichikhmkhcpdjc
Επίσημο URL https://chromewebstore.google.com/detail/wingman/bepjjhbjcogelfnbkoichikhmkhcpdjc
Περιγραφή This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.
Μέγεθος Αρχείου 128 KB
Αριθμός Εγκαταστάσεων 202
Τρέχουσα Έκδοση 1.1.35
Τελευταία Ενημέρωση 2021-06-24
Ημερομηνία Δημοσίευσης 2020-03-06
Αξιολόγηση 5.00/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής https://strings.ai
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.trywingman.com/
Διεύθυνση URL της Σελίδας Βοήθειας https://www.trywingman.com/privacy-policy
URL της Σελίδας Πολιτικής Απορρήτου https://trywingman.com/privacy-policy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Wingman",
    "description": "This extension captures the audio on from your dialer tabs and stream it back to enable Wingman.",
    "version": "1.1.35",
    "icons": {
        "128": "img\/icon.png"
    },
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html",
        "default_title": "Wingman"
    },
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "permissions": [
        "tabs",
        "tabCapture",
        "activeTab",
        "cookies",
        "http:\/\/localhost\/",
        "https:\/\/app.hubspot.com\/",
        "https:\/\/app.strings.ai\/",
        "https:\/\/api.trywingman.com\/",
        "https:\/\/app.trywingman.com\/",
        "https:\/\/dialpad.com\/",
        "https:\/\/dev.trywingman.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost\/*"
            ],
            "js": [
                "content_scripts\/localhost.js",
                "content_scripts\/popup.js"
            ]
        },
        {
            "matches": [
                "https:\/\/app.hubspot.com\/*",
                "https:\/\/*.freshsales.io\/*",
                "https:\/\/*.freshcaller.com\/*",
                "https:\/\/dialpad.com\/app*",
                "https:\/\/*.followupboss.com\/*"
            ],
            "all_frames": true,
            "js": [
                "content_scripts\/dialer_integration.js",
                "content_scripts\/popup.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "css\/*",
        "img\/*"
    ],
    "commands": {
        "enable": {
            "suggested_key": {
                "default": "Ctrl+Shift+6",
                "mac": "Command+Shift+6"
            },
            "global": true,
            "description": "Enable wingman"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+7",
                "mac": "Command+Shift+7"
            }
        }
    }
}