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文件
下載Polycom Phone Control擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } } } } |