IceLink WebRTC Screen Capture

This extension allows IceLink WebRTC connections to use the screen as a video source.

O que é IceLink WebRTC Screen Capture?

IceLink WebRTC Screen Capture é uma extensão do Chrome desenvolvida por https://frozenmountain.com, e sua principal característica é "This extension allows IceLink WebRTC connections to use the screen as a video source.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão IceLink WebRTC Screen Capture

Baixe arquivos de extensão IceLink WebRTC Screen Capture no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        IceLink is a software development kit that provides WebRTC support for Internet Explorer, as well as for iOS, Android, Windows, Mac, Linux, and Xamarin applications. With IceLink, WebRTC Anywhere becomes a reality, and you can begin developing applications today that make use of peer-to-peer audio, video, and data streaming regardless of the browsers or platforms involved.

Using IceLink’s cross-platform API ensures that your applications are portable across all platforms. The API makes use of existing WebRTC support when available (Chrome, Firefox, etc.) and provides the same support everywhere else (Internet Explorer and numerous native platforms). Since IceLink adheres strictly to the WebRTC standard, applications written using other WebRTC implementations interact seamlessly with applications using IceLink. IceLink also includes simple API support for establishing “many-to-many” peer-to-peer connections.

This extension allows WebRTC connections to use the screen as a video source.                    

Informações Básicas da Extensão

Nome IceLink WebRTC Screen Capture IceLink WebRTC Screen Capture
ID nidjnlpklmpflfmfflalpddmadlgjckn
URL Oficial https://chromewebstore.google.com/detail/icelink-webrtc-screen-cap/nidjnlpklmpflfmfflalpddmadlgjckn
Descrição This extension allows IceLink WebRTC connections to use the screen as a video source.
Tamanho do Arquivo 374 KB
Contagem de Instalações 415
Versão Atual 3.0.10
Última Atualização 2017-04-10
Data de Publicação 2017-04-10
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://frozenmountain.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.frozenmountain.com/products/icelink
URL da Página de Ajuda http://support.frozenmountain.com/
URL da Página de Política de Privacidade https://www.frozenmountain.com/legal
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "IceLink WebRTC Screen Capture",
    "version": "3.0.10",
    "description": "This extension allows IceLink WebRTC connections to use the screen as a video source.",
    "icons": {
        "16": "IceLink-16.png",
        "32": "IceLink-32.png",
        "48": "IceLink-48.png",
        "128": "IceLink-128.png"
    },
    "author": "Frozen Mountain Software",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "homepage_url": "https:\/\/www.frozenmountain.com\/icelink\/",
    "minimum_chrome_version": "34",
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "IceLink-16.png",
        "IceLink-32.png",
        "IceLink-48.png",
        "IceLink-128.png"
    ]
}