YouQue

Queueing youtube videos

YouQueคืออะไร?

YouQue เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pahvi67 และคุณลักษณะหลักของมันคือ "Queueing youtube videos"

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

screenshot

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

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

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

                        YouQue will allow you to queue YouTube videos. All you need to do is open YouTube in adjacent tabs and they will play in order from left to right. It will also automatically stop videos to further help manage the tabs.

Currently this has no on/off button so you will have to disable it in extensions if you don't want to use it.

In case you have any questions or encounter any bugs please let me know.                    

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

ชื่อ YouQue YouQue
ID jedkmelkipfnbcgbanaeogegckbfeejh
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/youque/jedkmelkipfnbcgbanaeogegckbfeejh
คำอธิบาย Queueing youtube videos
ขนาดไฟล์ 38.07 KB
จำนวนการติดตั้ง 29
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2014-10-20
วันที่เผยแพร่ 2014-10-20
คะแนน 2.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Pahvi67
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouQue",
    "description": "Queueing youtube videos",
    "version": "1.0",
    "permissions": [
        "*:\/\/*.youtube.com\/*",
        "*:\/\/*.youtube.fi\/*",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "http:\/\/*.youtube.com\/*",
                "http:\/\/*.youtube.fi\/*",
                "https:\/\/*.youtube.fi\/*"
            ],
            "js": [
                "jquery.js",
                "contentscript.js"
            ],
            "permissions": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.youtube.fi\/*",
                "tabs"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "eventPage.js"
        ],
        "persistent": false
    }
}