Companion for Cisco Finesse

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

Co to jest Companion for Cisco Finesse?

Companion for Cisco Finesse to rozszerzenie Chrome opracowane przez https://squareo.com, a jego główną funkcją jest „Keep track of your Finesse state without looking at the Finesse tab.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Companion for Cisco Finesse

Pobierz pliki rozszerzeń Companion for Cisco Finesse w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Companion for Cisco Finesse Companion for Cisco Finesse
ID lfgpecpdpddcgaihofdmlioloenconjl
Oficjalny URL https://chromewebstore.google.com/detail/companion-for-cisco-fines/lfgpecpdpddcgaihofdmlioloenconjl
Opis Keep track of your Finesse state without looking at the Finesse tab.
Rozmiar pliku 73.17 KB
Liczba instalacji 85
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2021-03-06
Data Publikacji 2021-03-05
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://squareo.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://companion.ccshift.com/
Adres URL Strony Pomocy https://companion.ccshift.com/index.html#contact
Adres URL Strony Polityki Prywatności https://companion.ccshift.com/faq.html
Obsługiwane Języki 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
}