WebNowPlaying

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

O que é WebNowPlaying?

WebNowPlaying é uma extensão do Chrome desenvolvida por rulz-dev-group, e sua principal característica é "A browser extension that provides information and controls for media playing in the browser to external adapters.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão WebNowPlaying

Baixe arquivos de extensão WebNowPlaying no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome WebNowPlaying WebNowPlaying
ID jfakgfcdgpghbbefmdfjkbdlibjgnbli
URL Oficial https://chromewebstore.google.com/detail/webnowplaying/jfakgfcdgpghbbefmdfjkbdlibjgnbli
Descrição A browser extension that provides information and controls for media playing in the browser to external adapters.
Tamanho do Arquivo 86.93 KB
Contagem de Instalações 63,288
Versão Atual 3.0.1
Última Atualização 2024-01-04
Data de Publicação 2019-10-06
Classificação 4.53/5 Total de 60 Avaliações
Desenvolvedor rulz-dev-group
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://wnp.keifufu.dev
URL da Página de Ajuda https://github.com/keifufu/WebNowPlaying/issues
Idiomas Suportados 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}