Rods&Cones
Rods&Cones for Remote Expert
Rods&Cones란 무엇입니까?
Rods&Cones은(는) Rods&Cones에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Rods&Cones for Remote Expert"입니다.
확장 프로그램 스크린샷
Rods&Cones 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The Rods&Cones browser extension is an indispensable tool for the Rods&Cones remote expert. Install the extension for 1) NOTIFICATION OF INCOMING CALL When the browser extension is installed, remote experts will receive notifications of incoming calls without being logged in to the Rods&Cones browser window. 2) RECORDING OF SESSION During a session, press the record button to record the session to the hard drive of the remote expert: more information on this link: https://rods-cones.atlassian.net/servicedesk/customer/portal/1/article/91095339 Note: recording is only available when enabled by your community manager
확장 프로그램 기본 정보
이름 | |
ID | jkaeafokijggfobfhnlbklencmbecjhp |
공식 URL | https://chromewebstore.google.com/detail/rodscones/jkaeafokijggfobfhnlbklencmbecjhp |
설명 | Rods&Cones for Remote Expert |
파일 크기 | 587 KB |
설치 횟수 | 1,080 |
현재 버전 | 3.0.2 |
최근 업데이트 | 2023-11-09 |
출시 날짜 | 2020-12-29 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | Rods&Cones |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.rods-cones.com |
도움말 페이지 URL | https://www.rods-cones.com/manual |
개인정보 보호 정책 페이지 URL | https://www.rods-cones.com/re_terms |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Rods&Cones", "version": "3.0.2", "description": "Rods&Cones for Remote Expert", "manifest_version": 2, "permissions": [ "storage", "tabCapture", "tabs", "https:\/\/api.rods-cones.com\/" ], "background": { "scripts": [ "environment.js", "logging-levels.js", "logging-core.js", "ffmpeg.min.js", "signalr.min.js", "jwt-decode.js", "common.js", "background.js" ], "persistent": true }, "content_security_policy": "script-src 'self' 'wasm-eval' https:\/\/unpkg.com https:\/\/expert.rods-cones.com https:\/\/js.monitor.azure.com; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/expert.rods-cones.com\/session\/home", "https:\/\/expert.rods-cones.com\/session\/qrcode\/*" ], "run_at": "document_start", "js": [ "credentials-injector.js" ] }, { "matches": [ "https:\/\/expert.rods-cones.com\/*" ], "run_at": "document_idle", "js": [ "tab-warning.js" ] } ], "web_accessible_resources": [ "authcallback.html" ], "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/rodscones_icon16.png", "32": "images\/rodscones_icon32.png", "48": "images\/rodscones_icon48.png", "128": "images\/rodscones_icon128.png" } }, "icons": { "16": "images\/rodscones_icon16.png", "32": "images\/rodscones_icon32.png", "48": "images\/rodscones_icon48.png", "128": "images\/rodscones_icon128.png" }, "options_page": "options.html" } |