Extereo Audio Player

An audio streaming extension that seeks for links to music and recordings on the sites you visit.

O que é Extereo Audio Player?

Extereo Audio Player é uma extensão do Chrome desenvolvida por argenkiwi, e sua principal característica é "An audio streaming extension that seeks for links to music and recordings on the sites you visit.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Extereo Audio Player

Baixe arquivos de extensão Extereo Audio Player 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

                        Extereo is a Web Extension which scans for references to audio sources in the sites you visit and enables you to easily create playlists with them which you can listen to while you browse the web without having to keep multiple tabs open.

UPDATE: after the Chrome Web Store forces extensions to use Manifest V3, this extension will no longer work as background audio playback will not be supported anymore.                    

Informações Básicas da Extensão

Nome Extereo Audio Player Extereo Audio Player
ID aokleaidncgnfejhkddhfobfffalfilm
URL Oficial https://chromewebstore.google.com/detail/extereo-audio-player/aokleaidncgnfejhkddhfobfffalfilm
Descrição An audio streaming extension that seeks for links to music and recordings on the sites you visit.
Tamanho do Arquivo 409 KB
Contagem de Instalações 1,148
Versão Atual 4.1.2
Última Atualização 2022-03-17
Data de Publicação 2020-04-08
Classificação 4.40/5 Total de 20 Avaliações
Desenvolvedor argenkiwi
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Extereo Audio Player",
    "version": "4.1.2",
    "short_name": "Extereo",
    "description": "An audio streaming extension that seeks for links to music and recordings on the sites you visit.",
    "author": "Leandro M. Peralta",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "Open Extereo Audio Player",
        "default_popup": "popup.html"
    },
    "commands": {
        "prev-track": {
            "suggested_key": {
                "default": "MediaPrevTrack"
            },
            "description": "Play Previous",
            "global": true
        },
        "play-pause": {
            "suggested_key": {
                "default": "MediaPlayPause"
            },
            "description": "Toggle Play\/Pause",
            "global": true
        },
        "next-track": {
            "suggested_key": {
                "default": "MediaNextTrack"
            },
            "description": "Play Next",
            "global": true
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/js\/content.bundle.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "optional_permissions": [
        "downloads"
    ]
}