Music on Stream

Display your music on your stream

Music on Stream là gì?

Music on Stream là một tiện ích mở rộng Chrome được phát triển bởi omega77073.dev, và tính năng chính của nó là "Display your music on your stream".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Music on Stream 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 allows you to display your current music on you stream through an overlay to let your viewers know what they are listening to.
This extension offers a quick way to create a now playing overlay on your stream.

Customize the overlay using the built-in theme editor to make it fit into your stream.

Check out the extension documentation for Guides and more documentation.
https://omega-2.gitbook.io/music-on-stream-docs/

Supported platforms:
- Spotify (Web and Desktop application)
- Soundcloud
- Youtube (Description playlists support)
- Youtube Music
- Deezer
- Pretzel Rocks
- Epidemic Sound

Special thanks to JimmyBoyyy and Brunk_Mortel                    

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

Tên Music on Stream Music on Stream
ID gmhgoccodihlkbhpfkonoglnbjdbmgpl
URL Chính Thức https://chromewebstore.google.com/detail/music-on-stream/gmhgoccodihlkbhpfkonoglnbjdbmgpl
Mô tả Display your music on your stream
Kích Thước Tệp 458 KB
Số Lần Cài Đặt 184
Phiên Bản Hiện Tại 2.2 - Revamp
Cập Nhật Lần Cuối 2023-12-12
Ngày Phát Hành 2022-07-05
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển omega77073.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://omega-2.gitbook.io/music-on-stream-docs/
URL Trang Trợ Giúp https://github.com/Panda-Dreamer/Music-On-OBS/issues
Ngôn Ngữ Được Hỗ Trợ en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "version": "2.2.1.1",
    "version_name": "2.2 - Revamp",
    "default_locale": "en",
    "author": "Omega77073",
    "short_name": "OBS Music",
    "description": "Display your music on your stream",
    "homepage_url": "https:\/\/omega-2.gitbook.io\/music-on-stream-docs\/",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/*.youtube.com\/*",
        "https:\/\/open.spotify.com\/*",
        "https:\/\/*.soundcloud.com\/*",
        "https:\/\/play.pretzel.rocks\/*",
        "https:\/\/*.epidemicsound.com\/*"
    ],
    "action": {
        "default_popup": "\/interface\/popup\/index.html",
        "default_title": "__MSG_extensionName__",
        "default_icon": {
            "16": "\/images\/default\/default16.png",
            "32": "\/images\/default\/default32.png",
            "48": "\/images\/default\/default48.png",
            "128": "\/images\/default\/default128.png"
        }
    },
    "options_ui": {
        "page": "\/interface\/options\/index.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/interface\/spotifyAuth\/index.html"
            ],
            "matches": [
                "https:\/\/accounts.spotify.com\/*"
            ],
            "extension_ids": []
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "\/scanners\/youtube.js"
            ]
        },
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "\/scanners\/spotify.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.soundcloud.com\/*"
            ],
            "js": [
                "\/scanners\/soundcloud.js"
            ]
        },
        {
            "matches": [
                "https:\/\/music.youtube.com\/*"
            ],
            "js": [
                "\/scanners\/ytmusic.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.epidemicsound.com\/*"
            ],
            "js": [
                "\/scanners\/epidemicsound.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.deezer.com\/*"
            ],
            "js": [
                "\/scanners\/deezer.js"
            ]
        },
        {
            "matches": [
                "https:\/\/play.pretzel.rocks\/*"
            ],
            "js": [
                "\/scanners\/pretzel.js"
            ]
        }
    ],
    "icons": {
        "16": "\/images\/default\/default16.png",
        "32": "\/images\/default\/default32.png",
        "48": "\/images\/default\/default48.png",
        "128": "\/images\/default\/default128.png"
    }
}