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
官方網址 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:\/\/*\/"
    ]
}