YouTube to iTunes

Opens songs on YouTube directly in iTunes

Cos'è YouTube to iTunes?

YouTube to iTunes è un'estensione di Chrome sviluppata da colecrouter1, e la sua funzione principale è "Opens songs on YouTube directly in iTunes".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione YouTube to iTunes

Scarica i file di estensione YouTube to iTunes in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome YouTube to iTunes YouTube to iTunes
ID ljpocmpfgngfnfjgjeekeoeigdmjhikm
URL Ufficiale https://chrome.google.com/webstore/detail/youtube-to-itunes/ljpocmpfgngfnfjgjeekeoeigdmjhikm
Descrizione Opens songs on YouTube directly in iTunes
Dimensione del File 281 KB
Conteggio Installazioni 1,000
Versione Corrente 0.4
Ultimo Aggiornamento 2019-03-04
Data di Pubblicazione 2019-03-04
Valutazione 3.60/5 Totale 5 Valutazioni
Sviluppatore colecrouter1
Tipo di Pagamento free
Lingue Supportate 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:\/\/*\/"
    ]
}