CurrentSong

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

Was ist CurrentSong?

CurrentSong ist eine Chrome-Erweiterung, die von Nerixyz entwickelt wurde, und ihr Hauptmerkmal ist "Implements a client to send the current active tab to a local server".

Erweiterungsscreenshots

screenshot

CurrentSong-Erweiterungs-CRX-Datei herunterladen

Laden Sie CurrentSong-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name CurrentSong CurrentSong
ID alanjgmjccmkkpmpejgdhaodfjlmcone
Offizielle URL https://chromewebstore.google.com/detail/currentsong/alanjgmjccmkkpmpejgdhaodfjlmcone
Beschreibung Implements a client to send the current active tab to a local server
Dateigröße 66.77 KB
Installationsanzahl 648
Aktuelle Version 0.5.1
Letztes Update 2021-04-05
Veröffentlichungsdatum 2020-09-07
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Nerixyz
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Nerixyz/current-song-overlay
Hilfeseite URL https://github.com/Nerixyz/current-song-overlay/issues
Unterstützte Sprachen 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"
        }
    }
}