WebNowPlaying

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

WebNowPlayingคืออะไร?

WebNowPlaying เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rulz-dev-group และคุณลักษณะหลักของมันคือ "A browser extension that provides information and controls for media playing in the browser to external adapters."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WebNowPlaying

ดาวน์โหลดไฟล์ส่วนขยาย 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}