Zendesk Utils

Utility extension for Zendesk Support

Zendesk Utilsคืออะไร?

Zendesk Utils เป็นส่วนขยายของ Chrome ที่พัฒนาโดย KJoones และคุณลักษณะหลักของมันคือ "Utility extension for Zendesk Support"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Zendesk Utils

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

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

                        A utility extension for Zendesk to fill in some gaps of the official application.

Features:
- Automatically refresh your Zendesk views to ensure you don't miss a ticket
- Hide views that you may not need right away
- See who is editing a ticket so you don't reply when someone else is
- Easily access the Zendesk Statuspage from inside the right click menu of your browser
- Easily close all Zendesk tabs from inside the right click menu of your browser

Disclaimer: ZendeskUtils is in no way affiliated with Zendesk or their partners. ZendeskUtils is created purely for functional purposes. Changes to Zendesk may break ZendeskUtils, if you notice this please let the developer know by going to Preferences -> Send Feedback.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Zendesk Utils Zendesk Utils
ID mdcmhkfioihfkfggfpiibohmkmnpanjh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/zendesk-utils/mdcmhkfioihfkfggfpiibohmkmnpanjh
คำอธิบาย Utility extension for Zendesk Support
ขนาดไฟล์ 105 KB
จำนวนการติดตั้ง 516
เวอร์ชันปัจจุบัน 0.0.10
อัปเดตครั้งล่าสุด 2022-11-29
วันที่เผยแพร่ 2022-07-06
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา KJoones
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ id,en,en-GB,en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionTitle__",
    "description": "__MSG_extensionDescription__",
    "author": "Karl Jones",
    "version": "0.0.10",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.zendesk.com\/agent\/*"
            ],
            "js": [
                "utils\/jquery-3.6.0.min.js",
                "utils\/localise.min.js",
                "js\/main.min.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "icons": {
        "128": "icons\/refresh-128.png"
    },
    "options_ui": {
        "page": "\/preferences\/index.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": "js\/background.min.js"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab",
        "notifications"
    ]
}