YouTube to iTunes

Opens songs on YouTube directly in iTunes

什么是YouTube to iTunes?

YouTube to iTunes是由colecrouter1开发的Chrome扩展程序,该扩展的主要功能是“Opens songs on YouTube directly in iTunes”。

扩展截图

screenshot

下载YouTube to iTunes扩展crx文件

下载YouTube to iTunes扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 YouTube to iTunes YouTube to iTunes
ID ljpocmpfgngfnfjgjeekeoeigdmjhikm
官方URL https://chrome.google.com/webstore/detail/youtube-to-itunes/ljpocmpfgngfnfjgjeekeoeigdmjhikm
简介 Opens songs on YouTube directly in iTunes
文件大小 281 KB
安装次数 1,000
当前版本 0.4
更新时间 2019-03-04
上架时间 2019-03-04
评分 3.60/5 共5次评分
开发者 colecrouter1
付费类型 free
支持的语言 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:\/\/*\/"
    ]
}