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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}