IceLink WebRTC Screen Capture
This extension allows IceLink WebRTC connections to use the screen as a video source.
Was ist IceLink WebRTC Screen Capture?
IceLink WebRTC Screen Capture ist eine Chrome-Erweiterung, die von https://frozenmountain.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows IceLink WebRTC connections to use the screen as a video source.".
Erweiterungsscreenshots
IceLink WebRTC Screen Capture-Erweiterungs-CRX-Datei herunterladen
Laden Sie IceLink WebRTC Screen Capture-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | IceLink WebRTC Screen Capture |
ID | nidjnlpklmpflfmfflalpddmadlgjckn |
Offizielle URL | https://chromewebstore.google.com/detail/icelink-webrtc-screen-cap/nidjnlpklmpflfmfflalpddmadlgjckn |
Beschreibung | This extension allows IceLink WebRTC connections to use the screen as a video source. |
Dateigröße | 374 KB |
Installationsanzahl | 415 |
Aktuelle Version | 3.0.10 |
Letztes Update | 2017-04-10 |
Veröffentlichungsdatum | 2017-04-10 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://frozenmountain.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.frozenmountain.com/products/icelink |
Hilfeseite URL | http://support.frozenmountain.com/ |
URL der Datenschutzrichtlinien-Seite | https://www.frozenmountain.com/legal |
Unterstützte Sprachen | 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" ] } |