Plug Notify

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

Co to jest Plug Notify?

Plug Notify to rozszerzenie Chrome opracowane przez http://www.stephentvedt.com, a jego główną funkcją jest „A Chrome Extension that sends desktop notifications about current song being played and @mentions in chat.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Plug Notify

Pobierz pliki rozszerzeń Plug Notify w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Now with customizable notifications!                    

Podstawowe informacje o rozszerzeniu

Nazwa Plug Notify Plug Notify
ID ofoajhhdimlfpfhdcngpfakkippmdkel
Oficjalny URL https://chrome.google.com/webstore/detail/plug-notify/ofoajhhdimlfpfhdcngpfakkippmdkel
Opis A Chrome Extension that sends desktop notifications about current song being played and @mentions in chat.
Rozmiar pliku 84.43 KB
Liczba instalacji 10
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2017-11-14
Data Publikacji 2017-11-14
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper http://www.stephentvedt.com
Typ Płatności free
Strona Rozszerzenia https://github.com/stvedt/Plug-Notify
Obsługiwane Języki 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"
    ]
}