WebNowPlaying
A browser extension that provides information and controls for media playing in the browser to external adapters.
Cos'è WebNowPlaying?
WebNowPlaying è un'estensione di Chrome sviluppata da rulz-dev-group, e la sua funzione principale è "A browser extension that provides information and controls for media playing in the browser to external adapters.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione WebNowPlaying
Scarica i file di estensione WebNowPlaying in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | WebNowPlaying |
ID | jfakgfcdgpghbbefmdfjkbdlibjgnbli |
URL Ufficiale | https://chromewebstore.google.com/detail/webnowplaying/jfakgfcdgpghbbefmdfjkbdlibjgnbli |
Descrizione | A browser extension that provides information and controls for media playing in the browser to external adapters. |
Dimensione del File | 86.93 KB |
Conteggio Installazioni | 63,288 |
Versione Corrente | 3.0.1 |
Ultimo Aggiornamento | 2024-01-04 |
Data di Pubblicazione | 2019-10-06 |
Valutazione | 4.53/5 Totale 60 Valutazioni |
Sviluppatore | rulz-dev-group |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://wnp.keifufu.dev |
URL della Pagina di Aiuto | https://github.com/keifufu/WebNowPlaying/issues |
Lingue Supportate | 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": [ "*:\/\/*\/*" ] } ] } |