Plug Notify

A Chrome Extension that sends desktop notifications about current song being played and @mentions in chat.

Was ist Plug Notify?

Plug Notify ist eine Chrome-Erweiterung, die von http://www.stephentvedt.com entwickelt wurde, und ihr Hauptmerkmal ist "A Chrome Extension that sends desktop notifications about current song being played and @mentions in chat.".

Erweiterungsscreenshots

screenshot

Plug Notify-Erweiterungs-CRX-Datei herunterladen

Laden Sie Plug Notify-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        A Chrome Extension that sends desktop notifications about current song being played and @mentions in chat.

Now with customizable notifications!                    

Grundlegende Informationen zur Erweiterung

Name Plug Notify Plug Notify
ID ofoajhhdimlfpfhdcngpfakkippmdkel
Offizielle URL https://chrome.google.com/webstore/detail/plug-notify/ofoajhhdimlfpfhdcngpfakkippmdkel
Beschreibung A Chrome Extension that sends desktop notifications about current song being played and @mentions in chat.
Dateigröße 84.43 KB
Installationsanzahl 10
Aktuelle Version 1.0.0
Letztes Update 2017-11-14
Veröffentlichungsdatum 2017-11-14
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler http://www.stephentvedt.com
Zahlungsart free
Erweiterungswebsite https://github.com/stvedt/Plug-Notify
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Plug Notify",
    "description": "A Chrome Extension that sends desktop notifications about current song being played and @mentions in chat.",
    "version": "1.0.0",
    "icons": {
        "128": "img\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/plug.dj\/*",
                "https:\/\/plug.dj\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "http:\/\/plug.dj\/*",
        "https:\/\/plug.dj\/*"
    ],
    "options_page": "options.html",
    "web_accessible_resources": [
        "main.js"
    ]
}