Tubepop

Undocks the embedded youtube video from their site into its own window.

Tubepop란 무엇입니까?

Tubepop은(는) logan.komanetz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Undocks the embedded youtube video from their site into its own window."입니다.

Tubepop 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension for Chrome allows you to take an already running video on YouTube and pop it out into its own window that you can resize and move.  No longer are you stuck with playing the video inside of the YouTube page.  Enjoy having your video off to the side in its own packed window while you are working on other things.

=============
Version 1.3.1
=============
- Fixes bug with new Chrome update that stopped the window from being undocked
- Changes button to only be enabled when in a Youtube "watch" window                    

확장 프로그램 기본 정보

이름 Tubepop Tubepop
ID kinlkfbbcojohldppmkklkeecgpggohh
공식 URL https://chrome.google.com/webstore/detail/tubepop/kinlkfbbcojohldppmkklkeecgpggohh
설명 Undocks the embedded youtube video from their site into its own window.
파일 크기 13.36 KB
설치 횟수 12
현재 버전 1.3.1
최근 업데이트 2017-02-13
출시 날짜 2017-02-13
평점 5.00/5 총 1 개의 평점
개발자 logan.komanetz
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tubepop",
    "description": "Undocks the embedded youtube video from their site into its own window.",
    "version": "1.3.1",
    "page_action": {
        "default_icon": "button_black_eject.png",
        "default_title": "Click to pop video out of YouTube."
    },
    "background": {
        "scripts": [
            "tubePop.js",
            "chromeExtension.js"
        ]
    },
    "web_accessible_resources": [
        "clientScript.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "notifications",
        "storage",
        "declarativeContent"
    ],
    "options_page": "views\/options.html",
    "options_ui": {
        "page": "views\/options.html",
        "chrome_style": true
    }
}