NowPlaying.Site Extension

Implements a client to send the current active tab to the nowplaying widget

ما هو NowPlaying.Site Extension؟

NowPlaying.Site Extension هو إضافة Chrome تم تطويرها بواسطة NowPlaying، والميزة الرئيسية لها هي "Implements a client to send the current active tab to the nowplaying widget".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة NowPlaying.Site Extension

قم بتنزيل ملفات الامتداد NowPlaying.Site Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This extension enables the widget to display information about the currently playing song 
(for example: YouTube, SoundCloud or a twitch stream). 
This extension only works if your have an account on: https://nowplaying.site/
There is a full guide on how to use the extension in our discord: https://discord.gg/HPFnWk48RT                    

معلومات أساسية عن التمديد

الاسم NowPlaying.Site Extension NowPlaying.Site Extension
ID jacgmbcjfkkbnpjgghihpaamminefmep
عنوان URL الرسمي https://chromewebstore.google.com/detail/nowplayingsite-extension/jacgmbcjfkkbnpjgghihpaamminefmep
الوصف Implements a client to send the current active tab to the nowplaying widget
حجم الملف 76.61 KB
عدد التثبيتات 1,790
النسخة الحالية 1.0.1
آخر تحديث 2023-11-22
تاريخ النشر 2021-08-16
تقييم 1.00/5 مجموع تقييمات 2
المطور NowPlaying
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://nowplaying.site/
عنوان صفحة المساعدة https://discord.gg/c6586qD2Mk
عنوان صفحة سياسة الخصوصية https://nowplaying.site/privacy-policy
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NowPlaying.Site Extension",
    "version": "1.0.1",
    "description": "Implements a client to send the current active tab to the nowplaying widget",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options\/options.html",
    "icons": {
        "16": "icon\/16.png",
        "32": "icon\/32.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content-scripts\/trackVideoProgress.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.soundcloud.com\/*"
            ],
            "js": [
                "content-scripts\/soundcloud.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content-scripts\/mediaSessionProxy.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "content-scripts\/mediaSessionProxy.inject.js"
    ],
    "permissions": [
        "tabs",
        "storage"
    ]
}