SpotifYoutube

Adds a button in Youtube that creates a new tab with Spotify.

O que é SpotifYoutube?

SpotifYoutube é uma extensão do Chrome desenvolvida por mariannelinharesm, e sua principal característica é "Adds a button in Youtube that creates a new tab with Spotify.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão SpotifYoutube

Baixe arquivos de extensão SpotifYoutube 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

                        SpotifYoutube is a chrome extension that connects youtube with spotify through a button that allows users to go to music videos from Youtube to  musics, albums or bands in Spotify.

Project: https://github.com/mari-linhares/spotifyoutube
Like it? Show support in Chrome Web Store and also in the project repository.
Bugs? Report here: https://github.com/mari-linhares/spotifyoutube/issues                    

Informações Básicas da Extensão

Nome SpotifYoutube SpotifYoutube
ID ankphgpmnicdkehhmnklhlodkfkecjbh
URL Oficial https://chrome.google.com/webstore/detail/spotifyoutube/ankphgpmnicdkehhmnklhlodkfkecjbh
Descrição Adds a button in Youtube that creates a new tab with Spotify.
Tamanho do Arquivo 45.4 KB
Contagem de Instalações 213
Versão Atual 1.0.1
Última Atualização 2016-09-16
Data de Publicação 2016-09-16
Classificação 4.57/5 Total de 7 Avaliações
Desenvolvedor mariannelinharesm
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/mari-linhares/spotifyoutube/
URL da Página de Ajuda https://github.com/mari-linhares/spotifyoutube/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SpotifYoutube",
    "version": "1.0.1",
    "homepage_url": "https:\/\/github.com\/mari-linhares\/spotifyoutube",
    "manifest_version": 2,
    "description": "Adds a button in Youtube that creates a new tab with Spotify.",
    "icons": {
        "16": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_title": "Spotify button on youtube"
    },
    "background": {
        "page": "src\/background\/background.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "css": [
                "src\/script\/script.css"
            ],
            "js": [
                "src\/libs\/jquery.js",
                "src\/script\/script.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/*.youtube.com\/*"
    ],
    "web_accessible_resources": [
        "src\/images\/*.png"
    ]
}