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
电子邮箱 [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
    }
}