SnowMAN
The Coolest WAY to save your SLA
Was ist SnowMAN?
SnowMAN ist eine Chrome-Erweiterung, die von Aayush Srivastava entwickelt wurde, und ihr Hauptmerkmal ist "The Coolest WAY to save your SLA".
Erweiterungsscreenshots
SnowMAN-Erweiterungs-CRX-Datei herunterladen
Laden Sie SnowMAN-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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]
Grundlegende Informationen zur Erweiterung
Name | SnowMAN |
ID | ihaobpaldagmiekjobbhdbgfpgglhfab |
Offizielle URL | https://chromewebstore.google.com/detail/snowman/ihaobpaldagmiekjobbhdbgfpgglhfab |
Beschreibung | The Coolest WAY to save your SLA |
Dateigröße | 49.96 KB |
Installationsanzahl | 65 |
Aktuelle Version | 1.4 |
Letztes Update | 2018-11-18 |
Veröffentlichungsdatum | 2018-11-17 |
Bewertung | 5.00/5 Insgesamt 21 Bewertungen |
Entwickler | Aayush Srivastava |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |