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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
        }
    ]
}