Is It Up

Extension to check if end points are up

Cos'è Is It Up?

Is It Up è un'estensione di Chrome sviluppata da Naveen Gurram, e la sua funzione principale è "Extension to check if end points are up".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Is It Up

Scarica i file di estensione Is It Up in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Is It Up Is It Up
ID hpeelccagnmlaklolopihojkmoabmidb
URL Ufficiale https://chromewebstore.google.com/detail/is-it-up/hpeelccagnmlaklolopihojkmoabmidb
Descrizione Extension to check if end points are up
Dimensione del File 602 KB
Conteggio Installazioni 117
Versione Corrente 1.23
Ultimo Aggiornamento 2023-07-19
Data di Pubblicazione 2019-11-30
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Naveen Gurram
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/NaveenGurram/IsItUp
URL della Pagina di Aiuto https://github.com/NaveenGurram/IsItUp
Lingue Supportate 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
    }
}