SnowMAN

The Coolest WAY to save your SLA

O que é SnowMAN?

SnowMAN é uma extensão do Chrome desenvolvida por Aayush Srivastava, e sua principal característica é "The Coolest WAY to save your SLA".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão SnowMAN

Baixe arquivos de extensão SnowMAN no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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]                    

Informações Básicas da Extensão

Nome SnowMAN SnowMAN
ID ihaobpaldagmiekjobbhdbgfpgglhfab
URL Oficial https://chromewebstore.google.com/detail/snowman/ihaobpaldagmiekjobbhdbgfpgglhfab
Descrição The Coolest WAY to save your SLA
Tamanho do Arquivo 49.96 KB
Contagem de Instalações 65
Versão Atual 1.4
Última Atualização 2018-11-18
Data de Publicação 2018-11-17
Classificação 5.00/5 Total de 21 Avaliações
Desenvolvedor Aayush Srivastava
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}