Companion for Cisco Finesse

Keep track of your Finesse state without looking at the Finesse tab.

什麼是Companion for Cisco Finesse?

Companion for Cisco Finesse是由https://squareo.com開發的Chrome擴展程式,該擴展的主要功能是“Keep track of your Finesse state without looking at the Finesse tab.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Companion for Cisco Finesse擴展crx文件

下載Companion for Cisco Finesse擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This free extensions adds some handy features.
- Sends a notification if you've been in Not Ready for a configurable length of time.
- Sends a notification if Finesse has lost connection.
- Click on the extension icon to open or find Finesse.
- Keyboard short cut to get to Finesse quickly.                    

擴展基本資訊

名稱 Companion for Cisco Finesse Companion for Cisco Finesse
ID lfgpecpdpddcgaihofdmlioloenconjl
官方網址 https://chromewebstore.google.com/detail/companion-for-cisco-fines/lfgpecpdpddcgaihofdmlioloenconjl
簡介 Keep track of your Finesse state without looking at the Finesse tab.
檔案大小 73.17 KB
安裝次數 85
目前版本 0.0.1
更新時間 2021-03-06
上架時間 2021-03-05
評分 5.00/5 共 1 次評分
開發者 https://squareo.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://companion.ccshift.com/
說明頁面URL https://companion.ccshift.com/index.html#contact
隱私政策頁面URL https://companion.ccshift.com/faq.html
支援的語言 en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "0.0.1",
    "description": "__MSG_extDescription__",
    "permissions": [
        "storage",
        "tabs",
        "notifications"
    ],
    "default_locale": "en",
    "commands": {
        "find-finesse": {
            "suggested_key": {
                "windows": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F",
                "linux": "Ctrl+Shift+F"
            },
            "description": "__MSG_commandDescription__"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/desktop\/*",
                "http:\/\/*\/desktop\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/finesseState16.png",
            "32": "images\/finesseState32.png",
            "48": "images\/finesseState48.png",
            "128": "images\/finesseState128.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "16": "images\/finesseState16.png",
        "32": "images\/finesseState32.png",
        "48": "images\/finesseState48.png",
        "128": "images\/finesseState128.png"
    },
    "web_accessible_resources": [
        "images\/*.png"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "manifest_version": 2
}