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.”。
擴展截圖
下載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 |
ID | jfakgfcdgpghbbefmdfjkbdlibjgnbli |
官方網址 | 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": [ "*:\/\/*\/*" ] } ] } |