Better Shorts Player
Adds video player controls to YouTube Shorts
Что такое Better Shorts Player?
Better Shorts Player - это расширение Chrome, разработанное Joubert Van Zyl, и его основная функция - "Adds video player controls to YouTube Shorts".
Снимки экрана расширения
Скачать файл CRX расширения Better Shorts Player
Скачайте файлы расширений Better Shorts Player в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Better Shorts Player adds the ability to scrub through a shorts video, play, pause, adjust volume and mute the video.
The controls fade away when not being hovered on as to not be intrusive to the video. Основная информация о расширении
| Название | |
| ID | bagcbccbbigjaicnmlcllplhjdfjeimn |
| Официальный URL | https://chromewebstore.google.com/detail/better-shorts-player/bagcbccbbigjaicnmlcllplhjdfjeimn |
| Описание | Adds video player controls to YouTube Shorts |
| Размер файла | 18.21 KB |
| Количество установок | 802 |
| Текущая Версия | 1.0.0 |
| Последнее Обновление | 2023-03-06 |
| Дата публикации | 2023-03-06 |
| Рейтинг | 4.77/5 Всего 13 оценок |
| Разработчик | Joubert Van Zyl |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Better Shorts Player",
"description": "Adds video player controls to YouTube Shorts",
"manifest_version": 3,
"version": "1.0.0",
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"assets\/pause.png",
"assets\/play.png",
"assets\/muted.png",
"assets\/unmuted.png"
],
"matches": [
"*:\/\/www.youtube.com\/*"
]
}
],
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"script.js"
],
"css": [
"styles.css"
],
"run_at": "document_end"
}
],
"permissions": [
"tabs"
],
"icons": {
"16": "assets\/icon.png",
"48": "assets\/icon.png",
"128": "assets\/icon.png"
}
} | |