Is It Up

Extension to check if end points are up

Is It Upとは何ですか?

Is It UpはNaveen Gurramによって開発されたChromeの拡張機能で、その主な機能は「Extension to check if end points are up」です。

拡張機能のスクリーンショット

screenshot
screenshot

Is It Up拡張機能のCRXファイルをダウンロード

Is It Up拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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
    }
}