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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
        }
    }
}