Is It Up

Extension to check if end points are up

Qu'est-ce que Is It Up ?

Is It Up est une extension Chrome développée par Naveen Gurram, et sa fonction principale est "Extension to check if end points are up".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Is It Up

Téléchargez les fichiers d'extension Is It Up au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Is It Up Is It Up
ID hpeelccagnmlaklolopihojkmoabmidb
URL Officiel https://chromewebstore.google.com/detail/is-it-up/hpeelccagnmlaklolopihojkmoabmidb
Description Extension to check if end points are up
Taille du Fichier 602 KB
Nombre d'Installations 117
Version Actuelle 1.23
Dernière Mise à Jour 2023-07-19
Date de Publication 2019-11-30
Évaluation 5.00/5 Total 3 Évaluations
Développeur Naveen Gurram
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/NaveenGurram/IsItUp
URL de la Page d'Aide https://github.com/NaveenGurram/IsItUp
Langues Prises en Charge 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
    }
}