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 Priya द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows a convenient slider based UI element for controlling volume in youtube shorts UI"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube Shorts Volume Control एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
}