WebNowPlaying

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

什么是WebNowPlaying?

WebNowPlaying是由rulz-dev-group开发的Chrome扩展程序,该扩展的主要功能是“A browser extension that provides information and controls for media playing in the browser to external adapters.”。

扩展截图

screenshot

下载WebNowPlaying扩展crx文件

下载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 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}