PagerDuty Notifier

Desktop notifications for your PagerDuty incidents.

PagerDuty Notifierとは何ですか?

PagerDuty NotifierはRich Adamsによって開発されたChromeの拡張機能で、その主な機能は「Desktop notifications for your PagerDuty incidents.」です。

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

screenshot

PagerDuty Notifier拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Displays your newly triggered PagerDuty incidents as desktop notifications, allowing you to acknowledge and resolve the incidents directly from the notification.

Has options to control which incidents you get notifications for (high vs low urgency, filter by users, filter by services, etc).

Note: You should not rely on this as your primary alert mechanism, there are no delivery guarantees with this extension. You are strongly encouraged to add phone and SMS notifications to your PagerDuty profile for maximum alerting reliability.                    

拡張機能の基本情報

名前 PagerDuty Notifier PagerDuty Notifier
ID bcmhejapohpmhgnpidaeiaedackacelm
公式URL https://chromewebstore.google.com/detail/pagerduty-notifier/bcmhejapohpmhgnpidaeiaedackacelm
説明 Desktop notifications for your PagerDuty incidents.
ファイルサイズ 42.9 KB
インストール数 3,306
現在のバージョン 0.23
最終更新日 2020-06-03
公開日 2020-06-02
評価 4.00/5 合計 10 レビュー
開発者 Rich Adams
支払い方法 free
拡張機能のウェブサイト https://github.com/PagerDuty/chrome-notifier
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PagerDuty Notifier",
    "short_name": "PD Notifier",
    "description": "Desktop notifications for your PagerDuty incidents.",
    "version": "0.23",
    "author": "Rich Adams (https:\/\/richadams.me)",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "64": "images\/icon-64.png",
        "128": "images\/icon-128.png",
        "256": "images\/icon-256.png"
    },
    "permissions": [
        "notifications",
        "background",
        "storage",
        "alarms",
        "https:\/\/*.pagerduty.com\/api\/v1\/*",
        "contextMenus"
    ],
    "options_ui": {
        "open_in_tab": true,
        "page": "options\/options.html"
    },
    "background": {
        "scripts": [
            "lib\/pd-api.js",
            "background\/pd-notifier.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "images\/browser-icon-32.png"
    }
}