CurrentSong

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

O que é CurrentSong?

CurrentSong é uma extensão do Chrome desenvolvida por Nerixyz, e sua principal característica é "Implements a client to send the current active tab to a local server".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão CurrentSong

Baixe arquivos de extensão CurrentSong no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome CurrentSong CurrentSong
ID alanjgmjccmkkpmpejgdhaodfjlmcone
URL Oficial https://chromewebstore.google.com/detail/currentsong/alanjgmjccmkkpmpejgdhaodfjlmcone
Descrição Implements a client to send the current active tab to a local server
Tamanho do Arquivo 66.77 KB
Contagem de Instalações 648
Versão Atual 0.5.1
Última Atualização 2021-04-05
Data de Publicação 2020-09-07
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Nerixyz
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Nerixyz/current-song-overlay
URL da Página de Ajuda https://github.com/Nerixyz/current-song-overlay/issues
Idiomas Suportados 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"
        }
    }
}