CurrentSong

Implements a client to send the current active tab to a local server

CurrentSongคืออะไร?

CurrentSong เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nerixyz และคุณลักษณะหลักของมันคือ "Implements a client to send the current active tab to a local server"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย CurrentSong ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension enables the Current Song Overlay to display information about the currently playing song (for example: YouTube, SoundCloud).                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ CurrentSong CurrentSong
ID alanjgmjccmkkpmpejgdhaodfjlmcone
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/currentsong/alanjgmjccmkkpmpejgdhaodfjlmcone
คำอธิบาย Implements a client to send the current active tab to a local server
ขนาดไฟล์ 66.77 KB
จำนวนการติดตั้ง 648
เวอร์ชันปัจจุบัน 0.5.1
อัปเดตครั้งล่าสุด 2021-04-05
วันที่เผยแพร่ 2020-09-07
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Nerixyz
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Nerixyz/current-song-overlay
URL หน้าช่วยเหลือ https://github.com/Nerixyz/current-song-overlay/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CurrentSong",
    "version": "0.5.1",
    "description": "Implements a client to send the current active tab to a local server",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content-scripts\/trackVideoProgress.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.soundcloud.com\/*"
            ],
            "js": [
                "content-scripts\/soundcloud.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.neverthink.tv\/*"
            ],
            "js": [
                "content-scripts\/neverthink.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content-scripts\/mediaSessionProxy.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "content-scripts\/mediaSessionProxy.inject.js"
    ],
    "permissions": [
        "tabs"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "{02914143-ede8-492c-8ad4-8a3af03f75bb}",
            "strict_min_version": "78.0"
        }
    }
}