YouTube to iTunes

Opens songs on YouTube directly in iTunes

What is YouTube to iTunes?

YouTube to iTunes is a Chrome extension developed by colecrouter1, and its main feature is "Opens songs on YouTube directly in iTunes".

Extension Screenshots

screenshot

Download YouTube to iTunes Extension CRX File

Download YouTube to iTunes 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 finds the song you're listening to on YouTube, and opens it in iTunes. Press the button on the extension to view the button.                    

Extension Basic Information

Name YouTube to iTunes YouTube to iTunes
ID ljpocmpfgngfnfjgjeekeoeigdmjhikm
Official URL https://chrome.google.com/webstore/detail/youtube-to-itunes/ljpocmpfgngfnfjgjeekeoeigdmjhikm
Description Opens songs on YouTube directly in iTunes
File Size 281 KB
Installation Count 1,000
Current Version 0.4
Last Updated 2019-03-04
Publish Date 2019-03-04
Rating 3.60/5 Total 5 Ratings
Developer colecrouter1
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube to iTunes",
    "manifest_version": 2,
    "version": "0.4",
    "description": "Opens songs on YouTube directly in iTunes",
    "icons": [],
    "browser_action": {
        "default_icon": "icons\/apple.png",
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": false,
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch*"
            ],
            "js": [
                "jquery.js",
                "itunes1.js",
                "itunes2.js",
                "script.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/"
    ]
}