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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}