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
官方URL 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
}