Warpwire Screen Capture

This screen capturing extension allows for the capture of screen or application window data into Warpwire.

Co je Warpwire Screen Capture?

Warpwire Screen Capture je rozšíření Chrome vyvinuté warpwiredev, a jeho hlavní funkcí je „This screen capturing extension allows for the capture of screen or application window data into Warpwire.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Warpwire Screen Capture

Stáhněte si soubory rozšíření Warpwire Screen Capture ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Warpwire Screen Capture is a free extension that allows Warpwire users to record their screens and save the recording to Warpwire, without leaving the browser. 

This extension is required for Screen Capture within Warpwire. Any Warpwire user who is interested in screen capture should install this plugin.

Users can record either an individual window, or their entire screen. Simply install the extension and make a recording. 

* Screen Capture within the Browser
* Save recordings directly to Warpwire Media Libraries
* Record entire screen or single window
* Use native camera and mic, or attached USB cameras and mic                    

Základní Informace o Rozšíření

Název Warpwire Screen Capture Warpwire Screen Capture
ID iljpecogeagjijkjnnghgapofcdejmej
Oficiální URL https://chromewebstore.google.com/detail/warpwire-screen-capture/iljpecogeagjijkjnnghgapofcdejmej
Popis This screen capturing extension allows for the capture of screen or application window data into Warpwire.
Velikost souboru 11.67 KB
Počet instalací 617
Aktuální Verze 1.0.0
Poslední Aktualizace 2017-10-05
Datum Vydání 2017-10-05
Hodnocení 4.00/5 Celkem 5 Hodnocení
Vývojář warpwiredev
Typ Platby free
Webové stránky Rozšíření https://www.warpwire.com/
URL Stránky Nápovědy https://www.warpwire.com/support/capture/screen-capture
URL Stránky Zásad Ochrany Soukromí https://www.warpwire.com/legal/privacy-policy
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Warpwire Screen Capture",
    "author": "Warpwire",
    "version": "1.0.0",
    "default_locale": "en",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "This screen capturing extension allows for the capture of screen or application window data into Warpwire.",
    "homepage_url": "https:\/\/www.warpwire.com",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "https:\/\/bootstrap.warpwire.com\/*"
            ]
        }
    ],
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon-48.png",
        "icon-128.png"
    ]
}