Plug Notify

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

Plug Notify là gì?

Plug Notify là một tiện ích mở rộng Chrome được phát triển bởi http://www.stephentvedt.com, và tính năng chính của nó là "A Chrome Extension that sends desktop notifications about current song being played and @mentions in chat.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Plug Notify

Tải xuống các tệp mở rộng Plug Notify dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Now with customizable notifications!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Plug Notify Plug Notify
ID ofoajhhdimlfpfhdcngpfakkippmdkel
URL Chính Thức https://chrome.google.com/webstore/detail/plug-notify/ofoajhhdimlfpfhdcngpfakkippmdkel
Mô tả A Chrome Extension that sends desktop notifications about current song being played and @mentions in chat.
Kích Thước Tệp 84.43 KB
Số Lần Cài Đặt 10
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2017-11-14
Ngày Phát Hành 2017-11-14
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển http://www.stephentvedt.com
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/stvedt/Plug-Notify
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}