IceLink WebRTC Screen Capture
This extension allows IceLink WebRTC connections to use the screen as a video source.
¿Qué es IceLink WebRTC Screen Capture?
IceLink WebRTC Screen Capture es una extensión de Chrome desarrollada por https://frozenmountain.com, y su función principal es "This extension allows IceLink WebRTC connections to use the screen as a video source.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión IceLink WebRTC Screen Capture
Descarga archivos de extensión IceLink WebRTC Screen Capture en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | IceLink WebRTC Screen Capture |
ID | nidjnlpklmpflfmfflalpddmadlgjckn |
URL Oficial | https://chromewebstore.google.com/detail/icelink-webrtc-screen-cap/nidjnlpklmpflfmfflalpddmadlgjckn |
Descripción | This extension allows IceLink WebRTC connections to use the screen as a video source. |
Tamaño del Archivo | 374 KB |
Cantidad de Instalaciones | 415 |
Versión Actual | 3.0.10 |
Última Actualización | 2017-04-10 |
Fecha de Publicación | 2017-04-10 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | https://frozenmountain.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://www.frozenmountain.com/products/icelink |
URL de la Página de Ayuda | http://support.frozenmountain.com/ |
URL de la Página de Política de Privacidad | https://www.frozenmountain.com/legal |
Idiomas Soportados | 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" ] } |