CircleHD Studio
Chrome Extension to record video from Camera, Screen or Picture in Picture
CircleHD Studio란 무엇입니까?
CircleHD Studio은(는) https://www.circlehd.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome Extension to record video from Camera, Screen or Picture in Picture"입니다.
확장 프로그램 스크린샷
CircleHD Studio 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
CircleHD users can record, publish and share videos to CircleHD community using CircleHD Studio extension for Google Chrome browser. This extension is required if you would like to record screen and picture in picture mode to your portal. If you have questions contact us at [email protected]
확장 프로그램 기본 정보
이름 | |
ID | lbphdjaagoejfionkfcmcjoleblnehih |
공식 URL | https://chrome.google.com/webstore/detail/circlehd-studio/lbphdjaagoejfionkfcmcjoleblnehih |
설명 | Chrome Extension to record video from Camera, Screen or Picture in Picture |
파일 크기 | 157 KB |
설치 횟수 | 42 |
현재 버전 | 2.1 |
최근 업데이트 | 2019-03-22 |
출시 날짜 | 2019-03-22 |
개발자 | https://www.circlehd.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.circlehd.com/studio |
도움말 페이지 URL | https://www.circlehd.com/studio/faq |
개인정보 보호 정책 페이지 URL | https://www.circlehd.com/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CircleHD Studio", "description": "Chrome Extension to record video from Camera, Screen or Picture in Picture", "version": "2.1", "minimum_chrome_version": "70", "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "icons": { "128": "icon.png" }, "background": { "scripts": [ ".\/background.min.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "content-script.min.js" ] } ], "permissions": [ "activeTab", "clipboardWrite", "contextMenus", "desktopCapture", "http:\/\/*\/*", "https:\/\/*.circlehd.com\/*", "https:\/\/*\/*", "identity", "notifications", "storage", "tabCapture", "tabs", "webNavigation", "webRequest", "webRequestBlocking" ], "browser_action": { "default_icon": "icon.png", "default_title": "Record Your Camera, Screen or Picture in Picture", "default_popup": "popup.html" }, "options_page": "options.html", "web_accessible_resources": [ "*.html" ] } |