PagerDuty Notifier

Desktop notifications for your PagerDuty incidents.

Qu'est-ce que PagerDuty Notifier ?

PagerDuty Notifier est une extension Chrome développée par Rich Adams, et sa fonction principale est "Desktop notifications for your PagerDuty incidents.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension PagerDuty Notifier

Téléchargez les fichiers d'extension PagerDuty Notifier au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom PagerDuty Notifier PagerDuty Notifier
ID bcmhejapohpmhgnpidaeiaedackacelm
URL Officiel https://chromewebstore.google.com/detail/pagerduty-notifier/bcmhejapohpmhgnpidaeiaedackacelm
Description Desktop notifications for your PagerDuty incidents.
Taille du Fichier 42.9 KB
Nombre d'Installations 3,306
Version Actuelle 0.23
Dernière Mise à Jour 2020-06-03
Date de Publication 2020-06-02
Évaluation 4.00/5 Total 10 Évaluations
Développeur Rich Adams
Type de Paiement free
Site Web de l'Extension https://github.com/PagerDuty/chrome-notifier
Langues Prises en Charge 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"
    }
}