Companion for Cisco Finesse
Keep track of your Finesse state without looking at the Finesse tab.
Was ist Companion for Cisco Finesse?
Companion for Cisco Finesse ist eine Chrome-Erweiterung, die von https://squareo.com entwickelt wurde, und ihr Hauptmerkmal ist "Keep track of your Finesse state without looking at the Finesse tab.".
Erweiterungsscreenshots
Companion for Cisco Finesse-Erweiterungs-CRX-Datei herunterladen
Laden Sie Companion for Cisco Finesse-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | lfgpecpdpddcgaihofdmlioloenconjl |
| Offizielle URL | https://chromewebstore.google.com/detail/companion-for-cisco-fines/lfgpecpdpddcgaihofdmlioloenconjl |
| Beschreibung | Keep track of your Finesse state without looking at the Finesse tab. |
| Dateigröße | 73.17 KB |
| Installationsanzahl | 85 |
| Aktuelle Version | 0.0.1 |
| Letztes Update | 2021-03-06 |
| Veröffentlichungsdatum | 2021-03-05 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | https://squareo.com |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://companion.ccshift.com/ |
| Hilfeseite URL | https://companion.ccshift.com/index.html#contact |
| URL der Datenschutzrichtlinien-Seite | https://companion.ccshift.com/faq.html |
| Unterstützte Sprachen | 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
} | |