YouTube to iTunes

Opens songs on YouTube directly in iTunes

YouTube to iTunesคืออะไร?

YouTube to iTunes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย colecrouter1 และคุณลักษณะหลักของมันคือ "Opens songs on YouTube directly in iTunes"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube to iTunes

ดาวน์โหลดไฟล์ส่วนขยาย 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:\/\/*\/"
    ]
}