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”。
擴展截圖
下載Zendesk Priority Highlights擴展crx文件
下載Zendesk Priority Highlights擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | kdnlbgealinpnebnoamnabcpjkifokpk |
| 官方網址 | 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"
} | |