Play Along

Extension for playing guitar along to YouTube videos

Play Alongคืออะไร?

Play Along เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jairam และคุณลักษณะหลักของมันคือ "Extension for playing guitar along to YouTube videos"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Play Along

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

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

                        Play Along is a small, compact extension that is activated when you listen to music on YouTube. Once the YouTube video is loaded, Play Along will search Ultimate Guitar for the corresponding chords and tabs. If no match is found, clicking on the "Chords" and "Tabs" buttons will open up the search page in Ultimate Guitar.

In addition to Ultimate Guitar, users also have the option of navigating to the Chordify page.

How to use:

1. Open Youtube.com
2. Search for a song and start playing the video
3. While on the Youtube page, click on the "Play Along" Chrome extension icon. You should now see options to lookup tabs and chords                    

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

ชื่อ Play Along Play Along
ID idkkhpjhgldjbghbiimlbiomfemcedko
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/play-along/idkkhpjhgldjbghbiimlbiomfemcedko
คำอธิบาย Extension for playing guitar along to YouTube videos
ขนาดไฟล์ 20.28 KB
จำนวนการติดตั้ง 480
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2023-07-17
วันที่เผยแพร่ 2020-01-07
คะแนน 3.40/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Jairam
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://jairampatel.com
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Play Along",
    "short_name": "Play Along",
    "version": "1.3",
    "manifest_version": 2,
    "description": "Extension for playing guitar along to YouTube videos",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage",
        "tabs",
        "webNavigation",
        "https:\/\/www.ultimate-guitar.com\/"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "all_frames": true,
            "runs_at": "document_idle",
            "js": [
                "js\/process-video.js"
            ],
            "css": [
                "css\/styles.css"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "page_action": {
        "default_popup": "popup.html",
        "default_title": "Play along",
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        }
    },
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    }
}