Now Playing - OBS
Client for OBS now playing widget
Qu'est-ce que Now Playing - OBS ?
Now Playing - OBS est une extension Chrome développée par https://www.playingnow.de, et sa fonction principale est "Client for OBS now playing widget".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Now Playing - OBS
Téléchargez les fichiers d'extension Now Playing - OBS au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Now Playing - OBS |
ID | ggkicimibhpmfkoepnlbbdomnkfkmcie |
URL Officiel | https://chromewebstore.google.com/detail/now-playing-obs/ggkicimibhpmfkoepnlbbdomnkfkmcie |
Description | Client for OBS now playing widget |
Taille du Fichier | 42.77 KB |
Nombre d'Installations | 90 |
Version Actuelle | 1.2.4 |
Dernière Mise à Jour | 2024-02-20 |
Date de Publication | 2023-08-25 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://www.playingnow.de |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.playingnow.de/ |
URL de la Page de Politique de Confidentialité | https://tizhproger.github.io/privacy_policy |
Langues Prises en Charge | 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" } } |