Zendesk Submit Expander

Takes the ticket submit buttons from the drop-up box in the Zendesk agent view and puts them into a button group instead.

Zendesk Submit Expanderคืออะไร?

Zendesk Submit Expander เป็นส่วนขยายของ Chrome ที่พัฒนาโดย frogamic และคุณลักษณะหลักของมันคือ "Takes the ticket submit buttons from the drop-up box in the Zendesk agent view and puts them into a button group instead."

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

screenshot
screenshot
screenshot

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

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

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

                        Update 2.4: Internationalisation - All languages should now be supported.

One of my friends raised a feature request with Zendesk to get this as a first class feature: https://support.zendesk.com/hc/en-us/community/posts/360049132674-Feature-request-individual-submit-buttons-instead-of-drop-down Get on over there and support it so you won't have to live without the expander for a bit next time their UI changes and it breaks.

Do you hate having to make that one extra click to close a ticket? Are you worried your mouse clicks will wear out?
No More! Now the 'submit as' menu is turned into a button group, making all options available all the time with a single click!

Easy As!                    

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

ชื่อ Zendesk Submit Expander Zendesk Submit Expander
ID hpocmjkijiifppldckmofghmhjmmmcdk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/zendesk-submit-expander/hpocmjkijiifppldckmofghmhjmmmcdk
คำอธิบาย Takes the ticket submit buttons from the drop-up box in the Zendesk agent view and puts them into a button group instead.
ขนาดไฟล์ 10.12 KB
จำนวนการติดตั้ง 898
เวอร์ชันปัจจุบัน 2.4.0.0
อัปเดตครั้งล่าสุด 2020-11-17
วันที่เผยแพร่ 2019-11-12
คะแนน 4.02/5 รวมทั้งหมด 43 คะแนน
ผู้พัฒนา frogamic
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/frogamic/zendesk-submit-expander
URL หน้าช่วยเหลือ https://twitter.com/LVocaliser
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Zendesk Submit Expander",
    "short_name": "ZSE",
    "version": "2.4.0.0",
    "manifest_version": 2,
    "description": "Takes the ticket submit buttons from the drop-up box in the Zendesk agent view and puts them into a button group instead.",
    "author": "Dominic Shelton",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "browser_action": {
        "default_icon": {
            "128": "icon128.png",
            "48": "icon48.png",
            "16": "icon16.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.zendesk.com\/agent\/tickets\/*"
            ],
            "run_at": "document_start",
            "css": [
                "zendesk-submit-expander.css"
            ],
            "js": [
                "zendesk-submit-expander.js"
            ]
        }
    ]
}