Zendesk Utils

Utility extension for Zendesk Support

什么是Zendesk Utils?

Zendesk Utils是由KJoones开发的Chrome扩展程序,该扩展的主要功能是“Utility extension for Zendesk Support”。

扩展截图

screenshot
screenshot

下载Zendesk Utils扩展crx文件

下载Zendesk Utils扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        A utility extension for Zendesk to fill in some gaps of the official application.

Features:
- Automatically refresh your Zendesk views to ensure you don't miss a ticket
- Hide views that you may not need right away
- See who is editing a ticket so you don't reply when someone else is
- Easily access the Zendesk Statuspage from inside the right click menu of your browser
- Easily close all Zendesk tabs from inside the right click menu of your browser

Disclaimer: ZendeskUtils is in no way affiliated with Zendesk or their partners. ZendeskUtils is created purely for functional purposes. Changes to Zendesk may break ZendeskUtils, if you notice this please let the developer know by going to Preferences -> Send Feedback.                    

扩展基本信息

名称 Zendesk Utils Zendesk Utils
ID mdcmhkfioihfkfggfpiibohmkmnpanjh
官方URL https://chromewebstore.google.com/detail/zendesk-utils/mdcmhkfioihfkfggfpiibohmkmnpanjh
简介 Utility extension for Zendesk Support
文件大小 105 KB
安装次数 516
当前版本 0.0.10
更新时间 2022-11-29
上架时间 2022-07-06
评分 5.00/5 共3次评分
开发者 KJoones
电子邮箱 [email protected]
付费类型 free
支持的语言 id,en,en-GB,en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionTitle__",
    "description": "__MSG_extensionDescription__",
    "author": "Karl Jones",
    "version": "0.0.10",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.zendesk.com\/agent\/*"
            ],
            "js": [
                "utils\/jquery-3.6.0.min.js",
                "utils\/localise.min.js",
                "js\/main.min.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "icons": {
        "128": "icons\/refresh-128.png"
    },
    "options_ui": {
        "page": "\/preferences\/index.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": "js\/background.min.js"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab",
        "notifications"
    ]
}