NowPlaying.Site Extension

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

Co to jest NowPlaying.Site Extension?

NowPlaying.Site Extension to rozszerzenie Chrome opracowane przez NowPlaying, a jego główną funkcją jest „Implements a client to send the current active tab to the nowplaying widget”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia NowPlaying.Site Extension

Pobierz pliki rozszerzeń NowPlaying.Site Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa NowPlaying.Site Extension NowPlaying.Site Extension
ID jacgmbcjfkkbnpjgghihpaamminefmep
Oficjalny URL https://chromewebstore.google.com/detail/nowplayingsite-extension/jacgmbcjfkkbnpjgghihpaamminefmep
Opis Implements a client to send the current active tab to the nowplaying widget
Rozmiar pliku 76.61 KB
Liczba instalacji 1,790
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2023-11-22
Data Publikacji 2021-08-16
Ocena 1.00/5 Łącznie 2 Oceny
Deweloper NowPlaying
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://nowplaying.site/
Adres URL Strony Pomocy https://discord.gg/c6586qD2Mk
Adres URL Strony Polityki Prywatności https://nowplaying.site/privacy-policy
Obsługiwane Języki 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"
    ]
}