CurrentSong

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

Co to jest CurrentSong?

CurrentSong to rozszerzenie Chrome opracowane przez Nerixyz, a jego główną funkcją jest „Implements a client to send the current active tab to a local server”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia CurrentSong

Pobierz pliki rozszerzeń CurrentSong 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 Current Song Overlay to display information about the currently playing song (for example: YouTube, SoundCloud).                    

Podstawowe informacje o rozszerzeniu

Nazwa CurrentSong CurrentSong
ID alanjgmjccmkkpmpejgdhaodfjlmcone
Oficjalny URL https://chromewebstore.google.com/detail/currentsong/alanjgmjccmkkpmpejgdhaodfjlmcone
Opis Implements a client to send the current active tab to a local server
Rozmiar pliku 66.77 KB
Liczba instalacji 648
Aktualna Wersja 0.5.1
Ostatnia Aktualizacja 2021-04-05
Data Publikacji 2020-09-07
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Nerixyz
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/Nerixyz/current-song-overlay
Adres URL Strony Pomocy https://github.com/Nerixyz/current-song-overlay/issues
Obsługiwane Języki 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"
        }
    }
}