Zendesk Priority Highlights

Highlight Zendesk tickets in Views based on priority

Zendesk Priority Highlights란 무엇입니까?

Zendesk Priority Highlights은(는) https://alexculligan.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlight Zendesk tickets in Views based on priority"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Zendesk Priority Highlights 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension no longer uses Google Analytics.

This extension automatically works in the Zendesk Views pages for accounts in most languages supported by Zendesk.

- Identifies tickets that have a Priority.
- Highlights tickets with Urgent priority as red.
- Highlights tickets with High priority as orange.
- Highlights tickets with Normal priority as yellow.
- Highlights tickets with Low priority as green.
- User can choose what priorities to highlight in the options page or the extension icon.                    

확장 프로그램 기본 정보

이름 Zendesk Priority Highlights Zendesk Priority Highlights
ID kdnlbgealinpnebnoamnabcpjkifokpk
공식 URL https://chromewebstore.google.com/detail/zendesk-priority-highligh/kdnlbgealinpnebnoamnabcpjkifokpk
설명 Highlight Zendesk tickets in Views based on priority
파일 크기 185 KB
설치 횟수 285
현재 버전 1.2.6
최근 업데이트 2019-07-21
출시 날짜 2019-07-21
평점 3.71/5 총 7 개의 평점
개발자 https://alexculligan.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://priorityhighlights.alexculligan.com
도움말 페이지 URL http://contact.alexculligan.com
개인정보 보호 정책 페이지 URL http://license.alexculligan.com
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Alex Culligan",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "name": "Zendesk Priority Highlights",
        "default_icon": {
            "16": "img\/disabled\/16.png",
            "24": "img\/disabled\/24.png",
            "32": "img\/disabled\/32.png",
            "48": "img\/disabled\/48.png",
            "128": "img\/disabled\/128.png",
            "256": "img\/disabled\/256.png"
        },
        "default_popup": "html\/popup-options.html"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "css\/style.css"
            ],
            "js": [
                "js\/jquery.js",
                "js\/content.js"
            ],
            "matches": [
                "https:\/\/*.zendesk.com\/agent\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "Highlight Zendesk tickets in Views based on priority",
    "icons": {
        "16": "img\/default\/16.png",
        "24": "img\/default\/24.png",
        "32": "img\/default\/32.png",
        "48": "img\/default\/48.png",
        "128": "img\/default\/128.png",
        "256": "img\/default\/256.png"
    },
    "manifest_version": 2,
    "name": "Zendesk Priority Highlights",
    "options_ui": {
        "page": "html\/options.html"
    },
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "short_name": "Priority Highlights",
    "version": "1.2.6"
}