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
官方網址 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
    }
}