Zendesk Utils
Utility extension for Zendesk Support
Zendesk Utils란 무엇입니까?
Zendesk Utils은(는) KJoones에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Utility extension for Zendesk Support"입니다.
확장 프로그램 스크린샷
Zendesk Utils 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" ] } |