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
官方網址 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
}