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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}