Is It Up

Extension to check if end points are up

Was ist Is It Up?

Is It Up ist eine Chrome-Erweiterung, die von Naveen Gurram entwickelt wurde, und ihr Hauptmerkmal ist "Extension to check if end points are up".

Erweiterungsscreenshots

screenshot
screenshot

Is It Up-Erweiterungs-CRX-Datei herunterladen

Laden Sie Is It Up-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Is It Up Is It Up
ID hpeelccagnmlaklolopihojkmoabmidb
Offizielle URL https://chromewebstore.google.com/detail/is-it-up/hpeelccagnmlaklolopihojkmoabmidb
Beschreibung Extension to check if end points are up
Dateigröße 602 KB
Installationsanzahl 117
Aktuelle Version 1.23
Letztes Update 2023-07-19
Veröffentlichungsdatum 2019-11-30
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler Naveen Gurram
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/NaveenGurram/IsItUp
Hilfeseite URL https://github.com/NaveenGurram/IsItUp
Unterstützte Sprachen 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
    }
}