Zendesk Priority Highlights

Highlight Zendesk tickets in Views based on priority

Zendesk Priority Highlights là gì?

Zendesk Priority Highlights là một tiện ích mở rộng Chrome được phát triển bởi https://alexculligan.com, và tính năng chính của nó là "Highlight Zendesk tickets in Views based on priority".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Zendesk Priority Highlights

Tải xuống các tệp mở rộng Zendesk Priority Highlights dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Zendesk Priority Highlights Zendesk Priority Highlights
ID kdnlbgealinpnebnoamnabcpjkifokpk
URL Chính Thức https://chromewebstore.google.com/detail/zendesk-priority-highligh/kdnlbgealinpnebnoamnabcpjkifokpk
Mô tả Highlight Zendesk tickets in Views based on priority
Kích Thước Tệp 185 KB
Số Lần Cài Đặt 285
Phiên Bản Hiện Tại 1.2.6
Cập Nhật Lần Cuối 2019-07-21
Ngày Phát Hành 2019-07-21
Đánh Giá 3.71/5 Tổng số 7 Đánh Giá
Nhà Phát Triển https://alexculligan.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://priorityhighlights.alexculligan.com
URL Trang Trợ Giúp http://contact.alexculligan.com
URL Trang Chính Sách Bảo Mật http://license.alexculligan.com
Ngôn Ngữ Được Hỗ Trợ 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"
}