IceLink WebRTC Screen Capture

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

Qu'est-ce que IceLink WebRTC Screen Capture ?

IceLink WebRTC Screen Capture est une extension Chrome développée par https://frozenmountain.com, et sa fonction principale est "This extension allows IceLink WebRTC connections to use the screen as a video source.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension IceLink WebRTC Screen Capture

Téléchargez les fichiers d'extension IceLink WebRTC Screen Capture au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom IceLink WebRTC Screen Capture IceLink WebRTC Screen Capture
ID nidjnlpklmpflfmfflalpddmadlgjckn
URL Officiel https://chromewebstore.google.com/detail/icelink-webrtc-screen-cap/nidjnlpklmpflfmfflalpddmadlgjckn
Description This extension allows IceLink WebRTC connections to use the screen as a video source.
Taille du Fichier 374 KB
Nombre d'Installations 415
Version Actuelle 3.0.10
Dernière Mise à Jour 2017-04-10
Date de Publication 2017-04-10
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://frozenmountain.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.frozenmountain.com/products/icelink
URL de la Page d'Aide http://support.frozenmountain.com/
URL de la Page de Politique de Confidentialité https://www.frozenmountain.com/legal
Langues Prises en Charge 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"
    ]
}