YouTube™ Scroll Player

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

YouTube™ Scroll Playerคืออะไร?

YouTube™ Scroll Player เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Cryous Technologies และคุณลักษณะหลักของมันคือ "Makes the YouTube video player shrink into the bottom right corner while scrolling."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube™ Scroll Player

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

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

                        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
}