WebNowPlaying

A browser extension that provides information and controls for media playing in the browser to external adapters.

¿Qué es WebNowPlaying?

WebNowPlaying es una extensión de Chrome desarrollada por rulz-dev-group, y su función principal es "A browser extension that provides information and controls for media playing in the browser to external adapters.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión WebNowPlaying

Descarga archivos de extensión WebNowPlaying en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre WebNowPlaying WebNowPlaying
ID jfakgfcdgpghbbefmdfjkbdlibjgnbli
URL Oficial https://chromewebstore.google.com/detail/webnowplaying/jfakgfcdgpghbbefmdfjkbdlibjgnbli
Descripción A browser extension that provides information and controls for media playing in the browser to external adapters.
Tamaño del Archivo 86.93 KB
Cantidad de Instalaciones 63,288
Versión Actual 3.0.1
Última Actualización 2024-01-04
Fecha de Publicación 2019-10-06
Calificación 4.53/5 Total de 60 Calificaciones
Desarrollador rulz-dev-group
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://wnp.keifufu.dev
URL de la Página de Ayuda https://github.com/keifufu/WebNowPlaying/issues
Idiomas Soportados 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}