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是由frogamic開發的Chrome擴展程式,該擴展的主要功能是“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

下載Zendesk Submit Expander擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}