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是由Kiwi Extensions開發的Chrome擴展程式,該擴展的主要功能是“This extension adds a button to videos all over the web to play them in Queue Player”。

擴展截圖

screenshot
screenshot

下載Queue Player Extension擴展crx文件

下載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
官方網址 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
        }
    ]
}