WebNowPlaying
A browser extension that provides information and controls for media playing in the browser to external adapters.
Τι είναι το WebNowPlaying;
Το WebNowPlaying είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rulz-dev-group, και η κύρια λειτουργία του είναι "A browser extension that provides information and controls for media playing in the browser to external adapters.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης WebNowPlaying
Λήψη αρχείων επέκτασης WebNowPlaying σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | WebNowPlaying |
ID | jfakgfcdgpghbbefmdfjkbdlibjgnbli |
Επίσημο URL | https://chromewebstore.google.com/detail/webnowplaying/jfakgfcdgpghbbefmdfjkbdlibjgnbli |
Περιγραφή | A browser extension that provides information and controls for media playing in the browser to external adapters. |
Μέγεθος Αρχείου | 86.93 KB |
Αριθμός Εγκαταστάσεων | 63,288 |
Τρέχουσα Έκδοση | 3.0.1 |
Τελευταία Ενημέρωση | 2024-01-04 |
Ημερομηνία Δημοσίευσης | 2019-10-06 |
Αξιολόγηση | 4.53/5 Συνολικά 60 Αξιολογήσεις |
Προγραμματιστής | rulz-dev-group |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://wnp.keifufu.dev |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/keifufu/WebNowPlaying/issues |
Υποστηριζόμενες Γλώσσες | 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": [ "*:\/\/*\/*" ] } ] } |