Companion for Cisco Finesse

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

Companion for Cisco Finesseคืออะไร?

Companion for Cisco Finesse เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://squareo.com และคุณลักษณะหลักของมันคือ "Keep track of your Finesse state without looking at the Finesse tab."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Companion for Cisco Finesse

ดาวน์โหลดไฟล์ส่วนขยาย Companion for Cisco Finesse ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
}