Buzz* - Phone for Google Chrome™

A WebRTC Phone for Asterisk and Google Chrome™

Was ist Buzz* - Phone for Google Chrome™?

Buzz* - Phone for Google Chrome™ ist eine Chrome-Erweiterung, die von grahambrown11 entwickelt wurde, und ihr Hauptmerkmal ist "A WebRTC Phone for Asterisk and Google Chrome™".

Erweiterungsscreenshots

screenshot
screenshot

Buzz* - Phone for Google Chrome™-Erweiterungs-CRX-Datei herunterladen

Laden Sie Buzz* - Phone for Google Chrome™-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        A WebRTC Phone for making calls from Google Chrome™, Chromium and Chromebook™ using Asterisk - the Open Source Communications Software.

Checkout the project wiki page for details on how to setup: https://github.com/grahambrown11/buzz-star/wiki                    

Grundlegende Informationen zur Erweiterung

Name Buzz* - Phone for Google Chrome™ Buzz* - Phone for Google Chrome™
ID hkpciegbnpmpbpodnloafnoinjpbmakp
Offizielle URL https://chromewebstore.google.com/detail/buzz-phone-for-google-chr/hkpciegbnpmpbpodnloafnoinjpbmakp
Beschreibung A WebRTC Phone for Asterisk and Google Chrome™
Dateigröße 984 KB
Installationsanzahl 8,019
Aktuelle Version 2.0.1
Letztes Update 2023-08-26
Veröffentlichungsdatum 2020-11-03
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler grahambrown11
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/grahambrown11/buzz-star/wiki
Hilfeseite URL https://github.com/grahambrown11/buzz-star/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Buzz* - Phone for Google Chrome\u2122",
    "short_name": "Buzz*",
    "description": "A WebRTC Phone for Asterisk and Google Chrome\u2122",
    "version": "2.0.1",
    "minimum_chrome_version": "109",
    "permissions": [
        "storage",
        "background",
        "notifications",
        "offscreen"
    ],
    "optional_permissions": [
        "idle"
    ],
    "background": {
        "service_worker": "buzz-worker.js"
    },
    "icons": {
        "16": "img\/icon-blue-16.png",
        "32": "img\/icon-blue-32.png",
        "48": "img\/icon-blue-48.png",
        "128": "img\/icon-blue-128.png"
    },
    "action": {
        "default_icon": {
            "16": "img\/icon-blue-16.png",
            "32": "img\/icon-blue-32.png",
            "48": "img\/icon-blue-48.png",
            "128": "img\/icon-blue-128.png"
        },
        "default_title": "Buzz* - Phone for Google Chrome\u2122",
        "default_popup": "popup.html?type=popup"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "incognito": "not_allowed",
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "buzz-content-script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "buzz-api.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}