YouTube Shorts Volume Control

Allows a convenient slider based UI element for controlling volume in youtube shorts UI

Co to jest YouTube Shorts Volume Control?

YouTube Shorts Volume Control to rozszerzenie Chrome opracowane przez Priya, a jego główną funkcją jest „Allows a convenient slider based UI element for controlling volume in youtube shorts UI”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia YouTube Shorts Volume Control

Pobierz pliki rozszerzeń YouTube Shorts Volume Control 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

                        This extension caters to everyone who is searching for a extension to control the volume of youtube shorts in their PC. This functionaility is currently missing on web based UI on laptops and PCs. This extension adds an UI element, as a convenient range slider that helps the user to control the volume of youtube shorts in a fine grained manner. 
Fixed some small bugs.                    

Podstawowe informacje o rozszerzeniu

Nazwa YouTube Shorts Volume Control YouTube Shorts Volume Control
ID iocnlgcooancaojnpkonjpcocmcjkgle
Oficjalny URL https://chromewebstore.google.com/detail/youtube-shorts-volume-con/iocnlgcooancaojnpkonjpcocmcjkgle
Opis Allows a convenient slider based UI element for controlling volume in youtube shorts UI
Rozmiar pliku 4.57 KB
Liczba instalacji 68
Aktualna Wersja 0.0.3
Ostatnia Aktualizacja 2023-11-25
Data Publikacji 2023-11-23
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Priya
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Shorts Volume Control",
    "version": "0.0.3",
    "description": "Allows a convenient slider based UI element for controlling volume in youtube shorts UI",
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_icon": [],
        "default_title": "Youtube Shorts Vol Control",
        "default_popup": "popup.html"
    },
    "manifest_version": 3
}