YouTube™ Scroll Player

Makes the YouTube video player shrink into the bottom right corner while scrolling.

YouTube™ Scroll Player란 무엇입니까?

YouTube™ Scroll Player은(는) Cryous Technologies에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes the YouTube video player shrink into the bottom right corner while scrolling."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

YouTube™ Scroll Player 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        When scrolling down on a YouTube video, the player will minimize into the bottom right corner. 

This means you can still watch the video while you're reading comments, etc.

This works with both the HTML5 and the Flash player.

I've disabled the ability to seek/skip through the video in the mini HTML5 version (it's actually hidden now) because YouTube's HTML5 player doesn't like the smaller dimensions of the player and the seek bar messes up.                    

확장 프로그램 기본 정보

이름 YouTube™ Scroll Player YouTube™ Scroll Player
ID cmceloemlfndkbklohojnlppaefclkma
공식 URL https://chromewebstore.google.com/detail/youtube-scroll-player/cmceloemlfndkbklohojnlppaefclkma
설명 Makes the YouTube video player shrink into the bottom right corner while scrolling.
파일 크기 51.99 KB
설치 횟수 246
현재 버전 1.0.5
최근 업데이트 2016-01-27
출시 날짜 2016-01-27
평점 3.28/5 총 18 개의 평점
개발자 Cryous Technologies
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube\u2122 Scroll Player",
    "description": "Makes the YouTube video player shrink into the bottom right corner while scrolling.",
    "version": "1.0.5",
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "mini-floating-player.css"
            ],
            "js": [
                "jquery.js",
                "contentscript.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "http:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "arrow-up.png"
    ],
    "manifest_version": 2
}