Now Playing - OBS

Client for OBS now playing widget

Τι είναι το Now Playing - OBS;

Το Now Playing - OBS είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.playingnow.de, και η κύρια λειτουργία του είναι "Client for OBS now playing widget".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Now Playing - OBS

Λήψη αρχείων επέκτασης Now Playing - OBS σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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 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"
    }
}