Guitar Tabs for YouTube

This extension will look into the current YouTube video description section and show available guitar tabs.

Guitar Tabs for YouTubeคืออะไร?

Guitar Tabs for YouTube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.music-theory.biz และคุณลักษณะหลักของมันคือ "This extension will look into the current YouTube video description section and show available guitar tabs."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Guitar Tabs for YouTube

ดาวน์โหลดไฟล์ส่วนขยาย Guitar Tabs for YouTube ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The tabs should be written in this format: Am: 122000, in order to be extracted.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Guitar Tabs for YouTube Guitar Tabs for YouTube
ID hehbipgbdjhpnhbgapjokhanboefalfj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/guitar-tabs-for-youtube/hehbipgbdjhpnhbgapjokhanboefalfj
คำอธิบาย This extension will look into the current YouTube video description section and show available guitar tabs.
ขนาดไฟล์ 8.01 KB
จำนวนการติดตั้ง 405
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2017-06-03
วันที่เผยแพร่ 2017-06-03
คะแนน 3.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://www.music-theory.biz
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Guitar Tabs for YouTube",
    "description": "This extension will look into the current YouTube video description section and show available guitar tabs.",
    "version": "1.0.0",
    "browser_action": {
        "default_icon": "icon_128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}