YouTubePlayer
Control YouTube videos across all tabs and windows from extension bar
Что такое YouTubePlayer?
YouTubePlayer - это расширение Chrome, разработанное Akshaya Kumar, и его основная функция - "Control YouTube videos across all tabs and windows from extension bar".
Снимки экрана расширения
Скачать файл CRX расширения YouTubePlayer
Скачайте файлы расширений YouTubePlayer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This Chrome extension allows to toggle youtube videos that are playing across tabs and windows from the extension. It can skip the ads that are skippable without any time wait.
Основная информация о расширении
Название | YouTubePlayer |
ID | djfdkfcebbbehfmibkkhneofknamohoi |
Официальный URL | https://chromewebstore.google.com/detail/youtubeplayer/djfdkfcebbbehfmibkkhneofknamohoi |
Описание | Control YouTube videos across all tabs and windows from extension bar |
Размер файла | 100 KB |
Количество установок | 31 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2019-08-04 |
Дата публикации | 2019-08-03 |
Разработчик | Akshaya Kumar |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTubePlayer", "version": "1.0.0", "description": "Control YouTube videos across all tabs and windows from extension bar", "icons": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" }, "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "permissions": [ "tabs" ] } |