YouTube Shorts Volume Control

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

Τι είναι το YouTube Shorts Volume Control;

Το YouTube Shorts Volume Control είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Priya, και η κύρια λειτουργία του είναι "Allows a convenient slider based UI element for controlling volume in youtube shorts UI".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης YouTube Shorts Volume Control

Λήψη αρχείων επέκτασης YouTube Shorts Volume Control σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα YouTube Shorts Volume Control YouTube Shorts Volume Control
ID iocnlgcooancaojnpkonjpcocmcjkgle
Επίσημο URL https://chromewebstore.google.com/detail/youtube-shorts-volume-con/iocnlgcooancaojnpkonjpcocmcjkgle
Περιγραφή Allows a convenient slider based UI element for controlling volume in youtube shorts UI
Μέγεθος Αρχείου 4.57 KB
Αριθμός Εγκαταστάσεων 68
Τρέχουσα Έκδοση 0.0.3
Τελευταία Ενημέρωση 2023-11-25
Ημερομηνία Δημοσίευσης 2023-11-23
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Priya
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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
}