Youtube playback control
Control all youtube tabs from any tab any window.
Что такое Youtube playback control?
Youtube playback control - это расширение Chrome, разработанное Ankit Shah, и его основная функция - "Control all youtube tabs from any tab any window.".
Снимки экрана расширения
Скачать файл CRX расширения Youtube playback control
Скачайте файлы расширений Youtube playback control в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This is a chrome extension which will allow you to play, pause or jump to next youtube videos running across all tabs in all windows. Press the row containing title and it toggles the state of tab playing youtube video. You need to reload tabs once after installing the extension. Now also supports jumping to particular tab and closing the tab. The extension is open source so feel free to add any issues or pull requests on https://github.com/shahankit/youtube-playback-control.
Основная информация о расширении
Название | Youtube playback control |
ID | okbcoijdeebocmahlanbfemnckjonfnh |
Официальный URL | https://chrome.google.com/webstore/detail/youtube-playback-control/okbcoijdeebocmahlanbfemnckjonfnh |
Описание | Control all youtube tabs from any tab any window. |
Размер файла | 46.5 KB |
Количество установок | 582 |
Текущая Версия | 0.1.4 |
Последнее Обновление | 2017-09-11 |
Дата публикации | 2017-09-11 |
Рейтинг | 4.41/5 Всего 27 оценок |
Разработчик | Ankit Shah |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube playback control", "version": "0.1.4", "description": "Control all youtube tabs from any tab any window.", "browser_action": { "default_icon": { "19": "assets\/icon.png", "38": "assets\/[email protected]" }, "default_popup": "views\/popup\/index.html", "default_title": "Youtube Tabs" }, "permissions": [ "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ] } ] } |