Now Playing - OBS
Client for OBS now playing widget
Now Playing - OBS क्या है?
Now Playing - OBS https://www.playingnow.de द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Client for OBS now playing widget"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Now Playing - OBS एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Now Playing - OBS |
ID | ggkicimibhpmfkoepnlbbdomnkfkmcie |
आधिकारिक URL | https://chromewebstore.google.com/detail/now-playing-obs/ggkicimibhpmfkoepnlbbdomnkfkmcie |
विवरण | Client for OBS now playing widget |
फ़ाइल का आकार | 42.77 KB |
स्थापना संख्या | 90 |
वर्तमान संस्करण | 1.2.4 |
अंतिम अपडेट | 2024-02-20 |
प्रकाशन तिथि | 2023-08-25 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | https://www.playingnow.de |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.playingnow.de/ |
गोपनीयता नीति पृष्ठ URL | https://tizhproger.github.io/privacy_policy |
समर्थित भाषाएँ | 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" } } |