Doxy.me Screen Sharing

Extension that captures content of your screen.

Co to jest Doxy.me Screen Sharing?

Doxy.me Screen Sharing to rozszerzenie Chrome opracowane przez https://doxy.me, a jego główną funkcją jest „Extension that captures content of your screen.”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia Doxy.me Screen Sharing

Pobierz pliki rozszerzeń Doxy.me Screen Sharing w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        A Google Chrome extension that allows a Doxy.me user to share their screen with another person in a Doxy.me meeting.                    

Podstawowe informacje o rozszerzeniu

Nazwa Doxy.me Screen Sharing Doxy.me Screen Sharing
ID hpohjmcciikpccgjfbjopmjcieefnaem
Oficjalny URL https://chromewebstore.google.com/detail/doxyme-screen-sharing/hpohjmcciikpccgjfbjopmjcieefnaem
Opis Extension that captures content of your screen.
Rozmiar pliku 17.64 KB
Liczba instalacji 5,966
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2017-10-23
Data Publikacji 2017-10-23
Ocena 2.67/5 Łącznie 3 Oceny
Deweloper https://doxy.me
Typ Płatności free
Strona Rozszerzenia https://doxy.me
Adres URL Strony Pomocy https://help.doxy.me/video-tutorials/features/screenshare
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Doxy.me Screen Sharing",
    "author": "Doxy.me LLC",
    "version": "1.0",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "Extension that captures content of your screen.",
    "homepage_url": "https:\/\/doxy.me",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "matches": [
                "https:\/\/*.doxy.me\/*",
                "https:\/\/doxy.me\/*",
                "https:\/\/doxi.me\/*",
                "https:\/\/*.doxi.me\/*"
            ]
        }
    ],
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}