Youtube to Google Music

Adds button to youtube pages to search for song in google music

What is Youtube to Google Music?

Youtube to Google Music is a Chrome extension developed by jrmurray, and its main feature is "Adds button to youtube pages to search for song in google music".

Extension Screenshots

screenshot
screenshot

Download Youtube to Google Music Extension CRX File

Download Youtube to Google Music 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

                        Simple extension that adds a button to youtube videos that will open a new tab of google music with the song title searched.                    

Extension Basic Information

Name Youtube to Google Music Youtube to Google Music
ID dcoljlfaeahfnjgeajeakopfgpaoadmc
Official URL https://chromewebstore.google.com/detail/youtube-to-google-music/dcoljlfaeahfnjgeajeakopfgpaoadmc
Description Adds button to youtube pages to search for song in google music
File Size 13.59 KB
Installation Count 743
Current Version 0.1
Last Updated 2016-10-05
Publish Date 2016-10-04
Rating 2.83/5 Total 6 Ratings
Developer jrmurray
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube to Google Music",
    "version": "0.1",
    "manifest_version": 2,
    "description": "Adds button to youtube pages to search for song in google music",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "tabs",
        "https:\/\/www.youtube.com\/watch?v=*",
        "http:\/\/www.youtube.com\/watch?v=*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch?v=*",
                "http:\/\/www.youtube.com\/watch?v=*"
            ],
            "css": [
                "inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch?v=*",
                "http:\/\/www.youtube.com\/watch?v=*"
            ],
            "js": [
                "inject\/inject.js"
            ]
        }
    ]
}