Plug Notify

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

Что такое Plug Notify?

Plug Notify - это расширение Chrome, разработанное http://www.stephentvedt.com, и его основная функция - "A Chrome Extension that sends desktop notifications about current song being played and @mentions in chat.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Plug Notify

Скачайте файлы расширений Plug Notify в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Now with customizable notifications!                    

Основная информация о расширении

Название Plug Notify Plug Notify
ID ofoajhhdimlfpfhdcngpfakkippmdkel
Официальный URL https://chrome.google.com/webstore/detail/plug-notify/ofoajhhdimlfpfhdcngpfakkippmdkel
Описание A Chrome Extension that sends desktop notifications about current song being played and @mentions in chat.
Размер файла 84.43 KB
Количество установок 10
Текущая Версия 1.0.0
Последнее Обновление 2017-11-14
Дата публикации 2017-11-14
Рейтинг 5.00/5 Всего 2 оценок
Разработчик http://www.stephentvedt.com
Тип оплаты free
Официальный сайт расширения https://github.com/stvedt/Plug-Notify
Поддерживаемые языки 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"
    ]
}