Better Shorts Player
Adds video player controls to YouTube Shorts
Co to jest Better Shorts Player?
Better Shorts Player to rozszerzenie Chrome opracowane przez Joubert Van Zyl, a jego główną funkcją jest „Adds video player controls to YouTube Shorts”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Better Shorts Player
Pobierz pliki rozszerzeń Better Shorts Player w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | bagcbccbbigjaicnmlcllplhjdfjeimn |
| Oficjalny URL | https://chromewebstore.google.com/detail/better-shorts-player/bagcbccbbigjaicnmlcllplhjdfjeimn |
| Opis | Adds video player controls to YouTube Shorts |
| Rozmiar pliku | 18.21 KB |
| Liczba instalacji | 802 |
| Aktualna Wersja | 1.0.0 |
| Ostatnia Aktualizacja | 2023-03-06 |
| Data Publikacji | 2023-03-06 |
| Ocena | 4.77/5 Łącznie 13 Oceny |
| Deweloper | Joubert Van Zyl |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
}
} | |