CurrentSong

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

Qu'est-ce que CurrentSong ?

CurrentSong est une extension Chrome développée par Nerixyz, et sa fonction principale est "Implements a client to send the current active tab to a local server".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension CurrentSong

Téléchargez les fichiers d'extension CurrentSong au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom CurrentSong CurrentSong
ID alanjgmjccmkkpmpejgdhaodfjlmcone
URL Officiel https://chromewebstore.google.com/detail/currentsong/alanjgmjccmkkpmpejgdhaodfjlmcone
Description Implements a client to send the current active tab to a local server
Taille du Fichier 66.77 KB
Nombre d'Installations 648
Version Actuelle 0.5.1
Dernière Mise à Jour 2021-04-05
Date de Publication 2020-09-07
Évaluation 5.00/5 Total 1 Évaluations
Développeur Nerixyz
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Nerixyz/current-song-overlay
URL de la Page d'Aide https://github.com/Nerixyz/current-song-overlay/issues
Langues Prises en Charge 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"
        }
    }
}