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文件

下载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
}