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.".
Снимки экрана расширения
Скачать файл 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 |
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 } |