Now Playing - OBS
Client for OBS now playing widget
Now Playing - OBS là gì?
Now Playing - OBS là một tiện ích mở rộng Chrome được phát triển bởi https://www.playingnow.de, và tính năng chính của nó là "Client for OBS now playing widget".
Ả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 Now Playing - OBS
Tải xuống các tệp mở rộng Now Playing - OBS 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 is a part for OBS now playing widget, which is used to display songs names and its duration from soundcloud.com, youtube.com, music.youtube.com and open.spotify.com services in OBS. All the files are publically availible as well as the installation tutorial, by the following repo: https://gitlab.com/tizhproger/now-playing-obs You can view the code and run it by yourself, wihtout this particaular extension only using Chrome developer settings. This extension doesn't store your data locally or via Chrome API tools. It only uses songs titles, duration and playing states, working with the content on the page. No account data are saved, transferred outside of your PC. All data are transmitted on localhost address to server application, which sends it to OBS locally.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Now Playing - OBS |
ID | ggkicimibhpmfkoepnlbbdomnkfkmcie |
URL Chính Thức | https://chromewebstore.google.com/detail/now-playing-obs/ggkicimibhpmfkoepnlbbdomnkfkmcie |
Mô tả | Client for OBS now playing widget |
Kích Thước Tệp | 42.77 KB |
Số Lần Cài Đặt | 90 |
Phiên Bản Hiện Tại | 1.2.4 |
Cập Nhật Lần Cuối | 2024-02-20 |
Ngày Phát Hành | 2023-08-25 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | https://www.playingnow.de |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.playingnow.de/ |
URL Trang Chính Sách Bảo Mật | https://tizhproger.github.io/privacy_policy |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Now Playing - OBS", "version": "1.2.4", "description": "Client for OBS now playing widget", "manifest_version": 3, "author": "Tizhproger inspired by Tuna", "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*", "https:\/\/*.spotify.com\/*", "https:\/\/*.soundcloud.com\/*" ], "js": [ "nowplaying_client.js" ] } ], "icons": { "16": "16.png", "32": "32.png", "48": "48.png", "64": "64.png", "128": "128.png" } } |