NowPlaying.Site Extension

Implements a client to send the current active tab to the nowplaying widget

NowPlaying.Site Extension là gì?

NowPlaying.Site Extension là một tiện ích mở rộng Chrome được phát triển bởi NowPlaying, và tính năng chính của nó là "Implements a client to send the current active tab to the nowplaying widget".

Ả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 NowPlaying.Site Extension

Tải xuống các tệp mở rộng NowPlaying.Site Extension 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

                        This extension enables the widget to display information about the currently playing song 
(for example: YouTube, SoundCloud or a twitch stream). 
This extension only works if your have an account on: https://nowplaying.site/
There is a full guide on how to use the extension in our discord: https://discord.gg/HPFnWk48RT                    

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

Tên NowPlaying.Site Extension NowPlaying.Site Extension
ID jacgmbcjfkkbnpjgghihpaamminefmep
URL Chính Thức https://chromewebstore.google.com/detail/nowplayingsite-extension/jacgmbcjfkkbnpjgghihpaamminefmep
Mô tả Implements a client to send the current active tab to the nowplaying widget
Kích Thước Tệp 76.61 KB
Số Lần Cài Đặt 1,790
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2023-11-22
Ngày Phát Hành 2021-08-16
Đánh Giá 1.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển NowPlaying
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://nowplaying.site/
URL Trang Trợ Giúp https://discord.gg/c6586qD2Mk
URL Trang Chính Sách Bảo Mật https://nowplaying.site/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NowPlaying.Site Extension",
    "version": "1.0.1",
    "description": "Implements a client to send the current active tab to the nowplaying widget",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options\/options.html",
    "icons": {
        "16": "icon\/16.png",
        "32": "icon\/32.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content-scripts\/trackVideoProgress.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.soundcloud.com\/*"
            ],
            "js": [
                "content-scripts\/soundcloud.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content-scripts\/mediaSessionProxy.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "content-scripts\/mediaSessionProxy.inject.js"
    ],
    "permissions": [
        "tabs",
        "storage"
    ]
}