SpotifYoutube

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

What is SpotifYoutube?

SpotifYoutube is a Chrome extension developed by mariannelinharesm, and its main feature is "Adds a button in Youtube that creates a new tab with Spotify.".

Extension Screenshots

screenshot

Download SpotifYoutube Extension CRX File

Download SpotifYoutube extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name SpotifYoutube SpotifYoutube
ID ankphgpmnicdkehhmnklhlodkfkecjbh
Official URL https://chrome.google.com/webstore/detail/spotifyoutube/ankphgpmnicdkehhmnklhlodkfkecjbh
Description Adds a button in Youtube that creates a new tab with Spotify.
File Size 45.4 KB
Installation Count 213
Current Version 1.0.1
Last Updated 2016-09-16
Publish Date 2016-09-16
Rating 4.57/5 Total 7 Ratings
Developer mariannelinharesm
Email [email protected]
Payment Type free
Extension Website https://github.com/mari-linhares/spotifyoutube/
Help Page URL https://github.com/mari-linhares/spotifyoutube/issues
Supported Languages 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"
    ]
}