IceLink WebRTC Screen Capture
This extension allows IceLink WebRTC connections to use the screen as a video source.
Τι είναι το IceLink WebRTC Screen Capture;
Το IceLink WebRTC Screen Capture είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://frozenmountain.com, και η κύρια λειτουργία του είναι "This extension allows IceLink WebRTC connections to use the screen as a video source.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης IceLink WebRTC Screen Capture
Λήψη αρχείων επέκτασης IceLink WebRTC Screen Capture σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | IceLink WebRTC Screen Capture |
ID | nidjnlpklmpflfmfflalpddmadlgjckn |
Επίσημο URL | https://chromewebstore.google.com/detail/icelink-webrtc-screen-cap/nidjnlpklmpflfmfflalpddmadlgjckn |
Περιγραφή | This extension allows IceLink WebRTC connections to use the screen as a video source. |
Μέγεθος Αρχείου | 374 KB |
Αριθμός Εγκαταστάσεων | 415 |
Τρέχουσα Έκδοση | 3.0.10 |
Τελευταία Ενημέρωση | 2017-04-10 |
Ημερομηνία Δημοσίευσης | 2017-04-10 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | https://frozenmountain.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.frozenmountain.com/products/icelink |
Διεύθυνση URL της Σελίδας Βοήθειας | http://support.frozenmountain.com/ |
URL της Σελίδας Πολιτικής Απορρήτου | https://www.frozenmountain.com/legal |
Υποστηριζόμενες Γλώσσες | 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" ] } |