Polycom Phone Control

Control your Polycom phone completely from your browser

Polycom Phone Controlคืออะไร?

Polycom Phone Control เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://falldeaf.com และคุณลักษณะหลักของมันคือ "Control your Polycom phone completely from your browser"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Polycom Phone Control

ดาวน์โหลดไฟล์ส่วนขยาย 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]                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Polycom Phone Control Polycom Phone Control
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"
            }
        }
    }
}