Polycom Phone Control
Control your Polycom phone completely from your browser
Polycom Phone Control란 무엇입니까?
Polycom Phone Control은(는) https://falldeaf.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Control your Polycom phone completely from your browser"입니다.
확장 프로그램 스크린샷
Polycom Phone Control 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
I created this extension to control my Polycom phone at work. The interface itself doesn't have any polish but it's working well for me and I was also careful with the security of setting up push and poll access by dynamically generating and saving secure passwords. This extension is also able to set up and configure your phone for remote access without needing to visit the Phone's internal web server. Functionality includes: * Selecting text on a page and calling the number from the right-click menu * Saving a list of speed-dial numbers * Controlling volume, dialing numbers, setting do not disturb, all from the browser icon popup. For questions, comments, bugs, feature requests, please contact me at [email protected]
확장 프로그램 기본 정보
이름 | |
ID | agdkjllbafjhlanjjjbnohiekmplbnle |
공식 URL | https://chromewebstore.google.com/detail/polycom-phone-control/agdkjllbafjhlanjjjbnohiekmplbnle |
설명 | Control your Polycom phone completely from your browser |
파일 크기 | 53.23 KB |
설치 횟수 | 210 |
현재 버전 | 1.2 |
최근 업데이트 | 2017-09-20 |
출시 날짜 | 2017-09-20 |
개발자 | https://falldeaf.com |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Polycom Phone Control", "version": "1.2", "description": "Control your Polycom phone completely from your browser", "manifest_version": 2, "permissions": [ "*:\/\/*\/*", "storage", "contextMenus", "notifications" ], "browser_action": { "default_icon": "icon48.png", "default_popup": "popup.html" }, "icons": { "16": "icon16-on.png", "48": "icon48.png", "128": "icon128.png" }, "options_page": "options.html", "background": { "scripts": [ "background.js", "api.js" ] }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+Shift+P" } } } } |