Is It Up

Extension to check if end points are up

Is It Upคืออะไร?

Is It Up เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Naveen Gurram และคุณลักษณะหลักของมันคือ "Extension to check if end points are up"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Is It Up

ดาวน์โหลดไฟล์ส่วนขยาย 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
    }
}