Picture In Picture Tab
Allow you to create a Picture In Picture for any tabs using streaming as PIP video
Что такое Picture In Picture Tab?
Picture In Picture Tab - это расширение Chrome, разработанное nadirlaskar, и его основная функция - "Allow you to create a Picture In Picture for any tabs using streaming as PIP video".
Снимки экрана расширения
Скачать файл CRX расширения Picture In Picture Tab
Скачайте файлы расширений Picture In Picture Tab в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Pin any chrome tab or screen using Picture-in-Picture Mode.
"Picture In Picture Tab" allows you to pin a tab in a floating window (always on top of other windows) so you can keep an eye on what you’re doing on other tabs while interacting with other sites, or applications.
Keyboard shortcut: Alt + Shift + P (⌥ + Shift + P on macOS).
You can also use the Browser Action Icon to toggle the tabs to pin or unpin as PIP.
Enjoy! Основная информация о расширении
| Название | |
| ID | bgopgnbpejocbnogmnjlbdalcgncbebc |
| Официальный URL | https://chrome.google.com/webstore/detail/picture-in-picture-tab/bgopgnbpejocbnogmnjlbdalcgncbebc |
| Описание | Allow you to create a Picture In Picture for any tabs using streaming as PIP video |
| Размер файла | 44.67 KB |
| Количество установок | 536 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2020-05-21 |
| Дата публикации | 2020-05-21 |
| Рейтинг | 2.20/5 Всего 5 оценок |
| Разработчик | nadirlaskar |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| URL страницы помощи | https://twitter.com/nadirlaskar |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Picture In Picture Tab",
"version": "1.0",
"description": "Allow you to create a Picture In Picture for any tabs using streaming as PIP video",
"manifest_version": 2,
"permissions": [],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Shift+P",
"mac": "Alt+Shift+P"
},
"description": "pipTab"
}
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"RecordRTC.js",
"playerScript.js"
]
}
],
"browser_action": [],
"icons": {
"16": "images\/16.png",
"32": "images\/32.png",
"48": "images\/48.png",
"128": "images\/128.png"
},
"minimum_chrome_version": "69.0.3483.0"
} | |