Autotask Highlighter
Highlights the time in the work list a different colour depending on the elapsed time
Autotask Highlighter란 무엇입니까?
Autotask Highlighter은(는) https://intuitiveit.com.au에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlights the time in the work list a different colour depending on the elapsed time"입니다.
확장 프로그램 스크린샷
Autotask Highlighter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A productivity tool for Autotask users. Want to make sure you're not spending to much time on a ticket? Use this extension to help you. It will highlight the time in your Autotask worklist. It will be green if the stop watch is less than 15 mins, orange for between 15 and 45 mins and red thereafter. If those times don't work for you, you can now customise it! Know when it's time to ask for help! ** New in version 1.5 ** The ability to customise the number of minutes the timer goes orange and red. Select the Options of the extension to personalise your times. ** New in version 1.4 ** Ticket Worklist has had an update. Tickets that are "In Progress" or "Customer Note Added" have that text highlighted in orange. This should help technicians quickly decide which tickets to address next. Please note: You need to add the column "Status" to your Work list. Click the cog at the bottom of your worklist to launch the Ticket Work List Settings and ensure "Status" is in the "Selected Data" column. ** New in version 1.3 ** The timer inside the Task or Ticket view has also received the highlighted treatment. It follows the same rules as the Worklist timers.
확장 프로그램 기본 정보
이름 | Autotask Highlighter |
ID | kogjgiaoijajffmjcbkkbocpohkeneeg |
공식 URL | https://chromewebstore.google.com/detail/autotask-highlighter/kogjgiaoijajffmjcbkkbocpohkeneeg |
설명 | Highlights the time in the work list a different colour depending on the elapsed time |
파일 크기 | 13.46 KB |
설치 횟수 | 52 |
현재 버전 | 1.5 |
최근 업데이트 | 2023-02-17 |
출시 날짜 | 2021-06-21 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://intuitiveit.com.au |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Autotask Highlighter", "version": "1.5", "options_ui": { "page": "options.html", "open_in_tab": false }, "description": "Highlights the time in the work list a different colour depending on the elapsed time", "content_scripts": [ { "js": [ "content.js" ], "matches": [ "*:\/\/*.autotask.net\/*" ] } ], "permissions": [ "storage", "declarativeContent" ], "background": { "service_worker": "background.js" }, "icons": { "16": "images\/logo16.png", "32": "images\/logo32.png", "48": "images\/logo64.png", "128": "images\/logo128.png" }, "manifest_version": 3 } |