Companion for Cisco Finesse
Keep track of your Finesse state without looking at the Finesse tab.
Wat is Companion for Cisco Finesse?
Companion for Cisco Finesse is een Chrome-extensie ontwikkeld door https://squareo.com, en de belangrijkste functie is "Keep track of your Finesse state without looking at the Finesse tab.".
Extensie Screenshots
Download het CRX-bestand van de extensie Companion for Cisco Finesse
Download Companion for Cisco Finesse-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Companion for Cisco Finesse |
ID | lfgpecpdpddcgaihofdmlioloenconjl |
Officiële URL | https://chromewebstore.google.com/detail/companion-for-cisco-fines/lfgpecpdpddcgaihofdmlioloenconjl |
Beschrijving | Keep track of your Finesse state without looking at the Finesse tab. |
Bestandsgrootte | 73.17 KB |
Aantal Installaties | 85 |
Huidige Versie | 0.0.1 |
Laatst Bijgewerkt | 2021-03-06 |
Publicatiedatum | 2021-03-05 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | https://squareo.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://companion.ccshift.com/ |
Help Pagina-URL | https://companion.ccshift.com/index.html#contact |
URL van de Privacybeleid Pagina | https://companion.ccshift.com/faq.html |
Ondersteunde Talen | 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 } |