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によって開発されたChromeの拡張機能で、その主な機能は「Allows a convenient slider based UI element for controlling volume in youtube shorts UI」です。

拡張機能のスクリーンショット

screenshot

YouTube Shorts Volume Control拡張機能のCRXファイルをダウンロード

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
Eメール [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
}