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”。
扩展截图
下载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 |
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 } |