Is It Up

Extension to check if end points are up

¿Qué es Is It Up?

Is It Up es una extensión de Chrome desarrollada por Naveen Gurram, y su función principal es "Extension to check if end points are up".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Is It Up

Descarga archivos de extensión Is It Up en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        How many times we wonder if there is a single dashboard to show the statuses of all applications running in different environment tiers.  This extension solves that problem by showing a matrix of all applications in multiple environments. This highly customizable takes the configuration in the form of JSON. 

Features
 - Can refresh in configured intervals and pushes notifications when a environment is down.
 - Ability to refresh individual application in one environment at a time
 - Ability to configure multiple links for each environment which opens in a new tab/window.                    

Información Básica de la Extensión

Nombre Is It Up Is It Up
ID hpeelccagnmlaklolopihojkmoabmidb
URL Oficial https://chromewebstore.google.com/detail/is-it-up/hpeelccagnmlaklolopihojkmoabmidb
Descripción Extension to check if end points are up
Tamaño del Archivo 602 KB
Cantidad de Instalaciones 117
Versión Actual 1.23
Última Actualización 2023-07-19
Fecha de Publicación 2019-11-30
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador Naveen Gurram
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/NaveenGurram/IsItUp
URL de la Página de Ayuda https://github.com/NaveenGurram/IsItUp
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Is It Up",
    "short_name": "Is It Up",
    "description": "Extension to check if end points are up",
    "version": "1.23",
    "permissions": [
        "storage",
        "",
        "activeTab",
        "notifications"
    ],
    "browser_action": {
        "default_icon": "img\/isitup128.png"
    },
    "icons": {
        "16": "img\/isitup16.png",
        "48": "img\/isitup38.png",
        "128": "img\/isitup128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "img\/*.png",
        "conf\/*.json",
        "options.html"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": true
    }
}