Video picture in picture
Video picture in picture
Что такое Video picture in picture?
Video picture in picture - это расширение Chrome, разработанное Oscar de Dios, и его основная функция - "Video picture in picture".
Снимки экрана расширения
Скачать файл CRX расширения Video picture in picture
Скачайте файлы расширений Video picture in picture в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Chrome extension to open the video of the active page to picture in picture mode.
It will open a litle window "always on top", it will be possible to use the computer in other windows while you watch the video with
the video always visible.
The code is in: https://github.com/OscarDeDios/pictureInPictureExtension
The extension uses the new picture in picture API: https://wicg.github.io/picture-in-picture/ Основная информация о расширении
| Название | |
| ID | bfncjmnhlgddppdmogacohjjieiahelp |
| Официальный URL | https://chromewebstore.google.com/detail/video-picture-in-picture/bfncjmnhlgddppdmogacohjjieiahelp |
| Описание | Video picture in picture |
| Размер файла | 5.87 KB |
| Количество установок | 578 |
| Текущая Версия | 1.1 |
| Последнее Обновление | 2019-03-21 |
| Дата публикации | 2019-03-16 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | Oscar de Dios |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| URL страницы политики конфиденциальности | https://www.noteboardapp.com/policy |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Video picture in picture",
"manifest_version": 2,
"version": "1.1",
"short_name": "Video picture in picture",
"icons": {
"48": "img\/pipVideo.png",
"128": "img\/pipVideo128.png"
},
"browser_action": {
"default_title": "__MSG_extName__",
"default_icon": {
"19": "img\/pipVideo.png"
}
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"description": "Video picture in picture",
"permissions": [
"activeTab",
"http:\/\/*\/*",
"https:\/\/*\/*"
]
} | |