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은(는) https://frozenmountain.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows IceLink WebRTC connections to use the screen as a video source."입니다.
확장 프로그램 스크린샷
IceLink WebRTC Screen Capture 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |