Companion for Cisco Finesse

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

What is Companion for Cisco Finesse?

Companion for Cisco Finesse is a Chrome extension developed by https://squareo.com, and its main feature is "Keep track of your Finesse state without looking at the Finesse tab.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Companion for Cisco Finesse Extension CRX File

Download Companion for Cisco Finesse extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Companion for Cisco Finesse Companion for Cisco Finesse
ID lfgpecpdpddcgaihofdmlioloenconjl
Official URL https://chromewebstore.google.com/detail/companion-for-cisco-fines/lfgpecpdpddcgaihofdmlioloenconjl
Description Keep track of your Finesse state without looking at the Finesse tab.
File Size 73.17 KB
Installation Count 85
Current Version 0.0.1
Last Updated 2021-03-06
Publish Date 2021-03-05
Rating 5.00/5 Total 1 Ratings
Developer https://squareo.com
Email [email protected]
Payment Type free
Extension Website https://companion.ccshift.com/
Help Page URL https://companion.ccshift.com/index.html#contact
Privacy Policy Page URL https://companion.ccshift.com/faq.html
Supported Languages 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
}