YouTube Shorts Volume Control

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

Was ist YouTube Shorts Volume Control?

YouTube Shorts Volume Control ist eine Chrome-Erweiterung, die von Priya entwickelt wurde, und ihr Hauptmerkmal ist "Allows a convenient slider based UI element for controlling volume in youtube shorts UI".

Erweiterungsscreenshots

screenshot

YouTube Shorts Volume Control-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Shorts Volume Control-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name YouTube Shorts Volume Control YouTube Shorts Volume Control
ID iocnlgcooancaojnpkonjpcocmcjkgle
Offizielle URL https://chromewebstore.google.com/detail/youtube-shorts-volume-con/iocnlgcooancaojnpkonjpcocmcjkgle
Beschreibung Allows a convenient slider based UI element for controlling volume in youtube shorts UI
Dateigröße 4.57 KB
Installationsanzahl 68
Aktuelle Version 0.0.3
Letztes Update 2023-11-25
Veröffentlichungsdatum 2023-11-23
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Priya
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
}