Queue Player Extension

This extension adds a button to videos all over the web to play them in Queue Player

Queue Player Extensionคืออะไร?

Queue Player Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kiwi Extensions และคุณลักษณะหลักของมันคือ "This extension adds a button to videos all over the web to play them in Queue Player"

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

screenshot
screenshot

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

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

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

                        PLEASE NOTE: To use this extension you must also download the the Queue Player app. Download it here: https://chrome.google.com/webstore/detail/queue-player/cnggefgheicadmhhleejikmdmijonppl

If the app is not installed clicking to open the app will open the chrome store link to download it.

This extension adds a button to videos while browsing the web. Left clicking this button will add the video to the queue. Right clicking this button will play the video immediately in Queue Player.

YouTube and videos embedded in a HTML5 player are supported.

Updates:
Version 1.1.1:
-Many improvements to adding videos from YouTube.
-Improvements to button placing on some websites.                    

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

ชื่อ Queue Player Extension Queue Player Extension
ID kdfigdbckggpgiadjjggbemfhglfpcfp
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/queue-player-extension/kdfigdbckggpgiadjjggbemfhglfpcfp
คำอธิบาย This extension adds a button to videos all over the web to play them in Queue Player
ขนาดไฟล์ 212 KB
จำนวนการติดตั้ง 1,000
เวอร์ชันปัจจุบัน 1.1.1
อัปเดตครั้งล่าสุด 2017-03-19
วันที่เผยแพร่ 2017-03-19
คะแนน 4.15/5 รวมทั้งหมด 13 คะแนน
ผู้พัฒนา Kiwi Extensions
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://docs.google.com/document/d/1nRwylTnUtAHl0rEvWytJNHfBotJ0WvcDa6_BKfwAkMM
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Queue Player Extension",
    "description": "This extension adds a button to videos all over the web to play them in Queue Player",
    "version": "1.1.1",
    "permissions": [
        "activeTab",
        "background",
        "tabCapture",
        "",
        "tabs",
        "management"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "dist\/background.bundle.js"
        ]
    },
    "browser_action": {
        "default_title": "Queue Player"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "images\/*.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "css": [
                "dist\/content.css"
            ],
            "js": [
                "libs\/jQuery\/jquery.min.js",
                "dist\/content.bundle.js"
            ],
            "all_frames": true
        }
    ]
}