Is It Up

Extension to check if end points are up

Is It Up क्या है?

Is It Up Naveen Gurram द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension to check if end points are up"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Is It Up एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Is It Up Is It Up
ID hpeelccagnmlaklolopihojkmoabmidb
आधिकारिक URL https://chromewebstore.google.com/detail/is-it-up/hpeelccagnmlaklolopihojkmoabmidb
विवरण Extension to check if end points are up
फ़ाइल का आकार 602 KB
स्थापना संख्या 117
वर्तमान संस्करण 1.23
अंतिम अपडेट 2023-07-19
प्रकाशन तिथि 2019-11-30
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Naveen Gurram
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/NaveenGurram/IsItUp
सहायता पृष्ठ URL https://github.com/NaveenGurram/IsItUp
समर्थित भाषाएँ 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
    }
}