Spotify Web Watcher

Watch over the Spotify Web Player and report the current song, artist and cover

Spotify Web Watcher là gì?

Spotify Web Watcher là một tiện ích mở rộng Chrome được phát triển bởi https://orestes.io, và tính năng chính của nó là "Watch over the Spotify Web Player and report the current song, artist and cover".

Ả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 Spotify Web Watcher

Tải xuống các tệp mở rộng Spotify Web Watcher 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

                        Connects to a private URL where you can display what you are playing currently on the Spotify Web Player

- Open Spotify Web Player (https://open.spotify.com)
- Log-in into Spotify
- The extension icon will turn green
- Click on the extension icon
- Copy the URL
- Use it on your streaming software (OBS/SLOBS/XPlit) as a "browser" source                    

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

Tên Spotify Web Watcher Spotify Web Watcher
ID bdmajojbomhndfchgmljkjihdpjhcefl
URL Chính Thức https://chromewebstore.google.com/detail/spotify-web-watcher/bdmajojbomhndfchgmljkjihdpjhcefl
Mô tả Watch over the Spotify Web Player and report the current song, artist and cover
Kích Thước Tệp 1.95 MB
Số Lần Cài Đặt 242
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2022-07-08
Ngày Phát Hành 2020-05-12
Nhà Phát Triển https://orestes.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/orestes/spotify-web-watcher
URL Trang Trợ Giúp https://github.com/orestes/spotify-web-watcher/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify Web Watcher",
    "version": "1.1.0",
    "description": "Watch over the Spotify Web Player and report the current song, artist and cover",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/cdn.firebase.com https:\/\/www.googleapis.com; object-src 'self'",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/16x16-green.png",
        "48": "icons\/48x48-green.png",
        "128": "icons\/128x128-green.png"
    },
    "web_accessible_resources": [
        "icons\/*.png"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/48x48-white.png",
            "32": "icons\/48x48-white.png",
            "48": "icons\/48x48-white.png"
        },
        "default_title": "Spotify Web Watcher",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}