SnowMAN
The Coolest WAY to save your SLA
SnowMAN란 무엇입니까?
SnowMAN은(는) Aayush Srivastava에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The Coolest WAY to save your SLA"입니다.
확장 프로그램 스크린샷
SnowMAN 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
SnowMAN for ServiceNow About: SnowMAN enables Real-Time Incident Monitoring in Service Now. How to Use: 1. Open a SNOW Incident and click the SnowMAN icon in the Address Bar 2. Make sure the Incident is open and visible when the icon is clicked 3. Reload page if needed Features: ✓ Real-time Incident Hop Time-Span Monitoring ✓ SLA-window Adjustments for Time calculations ✓ Holiday Adjustments (2015-2016) ✓ Incident Resolved->Rejected->Resolved Adjustment ✓ 'Time to MRT' Indicator ✓ User-friendly Design with Color Indicators ✓ Regular Updates Problem Reporting: Bugs/problems with this extension may be directly reported on the Developer's Email Developer Email: [email protected]
확장 프로그램 기본 정보
이름 | SnowMAN |
ID | ihaobpaldagmiekjobbhdbgfpgglhfab |
공식 URL | https://chromewebstore.google.com/detail/snowman/ihaobpaldagmiekjobbhdbgfpgglhfab |
설명 | The Coolest WAY to save your SLA |
파일 크기 | 49.96 KB |
설치 횟수 | 65 |
현재 버전 | 1.4 |
최근 업데이트 | 2018-11-18 |
출시 날짜 | 2018-11-17 |
평점 | 5.00/5 총 21 개의 평점 |
개발자 | Aayush Srivastava |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SnowMAN", "version": "1.4", "offline_enabled": true, "icons": { "16": "images\/icon.png", "48": "images\/icon.png", "128": "images\/icon.png" }, "description": "The Coolest WAY to save your SLA", "background": { "persistent": true, "scripts": [ "background.js" ] }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/*.service-now.com\/*" ], "js": [ "moment.js", "content.js" ], "all_frames": true } ], "page_action": { "run_at": "document_end", "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "SnowMAN by Aman Srivastava" } } |