WebNowPlaying
A browser extension that provides information and controls for media playing in the browser to external adapters.
WebNowPlaying là gì?
WebNowPlaying là một tiện ích mở rộng Chrome được phát triển bởi rulz-dev-group, và tính năng chính của nó là "A browser extension that provides information and controls for media playing in the browser to external adapters.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng WebNowPlaying
Tải xuống các tệp mở rộng WebNowPlaying 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 browser extension that provides information and controls for media playing in the browser to external adapters. It detects information about the media being played, such as the title, artist, album, and more. This information can be utilized by external adapters to manage the media, including actions like pausing, skipping, adjusting the volume, and more. Documentation and Usage: https://wnp.keifufu.dev Adapters: - Rainmeter - OBS - CLI - Macro Deck 2 - Read the full list on GitHub: https://github.com/keifufu/WebNowPlaying Supports sites like: YouTube, Spotify, Soundcloud, and many others. Read the full list here: https://wnp.keifufu.dev/supported-sites
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | WebNowPlaying |
ID | jfakgfcdgpghbbefmdfjkbdlibjgnbli |
URL Chính Thức | https://chromewebstore.google.com/detail/webnowplaying/jfakgfcdgpghbbefmdfjkbdlibjgnbli |
Mô tả | A browser extension that provides information and controls for media playing in the browser to external adapters. |
Kích Thước Tệp | 86.93 KB |
Số Lần Cài Đặt | 63,288 |
Phiên Bản Hiện Tại | 3.0.1 |
Cập Nhật Lần Cuối | 2024-01-04 |
Ngày Phát Hành | 2019-10-06 |
Đánh Giá | 4.53/5 Tổng số 60 Đánh Giá |
Nhà Phát Triển | rulz-dev-group |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://wnp.keifufu.dev |
URL Trang Trợ Giúp | https://github.com/keifufu/WebNowPlaying/issues |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "WebNowPlaying", "short_name": "WebNowPlaying", "description": "A browser extension that provides information and controls for media playing in the browser to external adapters.", "version": "3.0.1", "icons": { "128": "icons\/icon-darkmode-128.png", "256": "icons\/icon-darkmode-256.png" }, "action": { "default_popup": "index.html", "default_title": "WebNowPlaying" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "all_frames": true } ], "background": { "service_worker": "sw.js" }, "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "injected.js" ], "matches": [ "*:\/\/*\/*" ] } ] } |