YTQ - YouTube Quality Selector
A chrome plugin to automatically set the quality of YouTube videos
什么是YTQ - YouTube Quality Selector?
YTQ - YouTube Quality Selector是由https://www.codemic.co.za开发的Chrome扩展程序,该扩展的主要功能是“A chrome plugin to automatically set the quality of YouTube videos”。
扩展截图
下载YTQ - YouTube Quality Selector扩展crx文件
下载YTQ - YouTube Quality Selector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Tired of YouTube automatically dropping the quality to suit bandwith and connection demands? Since YouTube does not allow you to set a default quality for videos, this plugin aims to eliminate the need of manually selecting a higher quality for each video. Simply set your default quality and let the plugin take care of the rest.
扩展基本信息
名称 | YTQ - YouTube Quality Selector |
ID | koekelbfakgefdogcfjjaimakbecekbj |
官方URL | https://chromewebstore.google.com/detail/ytq-youtube-quality-selec/koekelbfakgefdogcfjjaimakbecekbj |
简介 | A chrome plugin to automatically set the quality of YouTube videos |
文件大小 | 207 KB |
安装次数 | 228 |
当前版本 | 2 |
更新时间 | 2023-07-06 |
上架时间 | 2021-09-02 |
评分 | 5.00/5 共1次评分 |
开发者 | https://www.codemic.co.za |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YTQ - YouTube Quality Selector", "description": "A chrome plugin to automatically set the quality of YouTube videos", "version": "2", "browser_action": { "default_title": "YTQ - YouTube Quality Selector", "default_icon": "icons\/logo.png", "default_popup": "YTQ.html" }, "icons": { "16": "icons\/logo16.png", "48": "icons\/logo.png", "128": "icons\/logo128.png" }, "permissions": [ "activeTab", "storage", "http:\/\/youtube.com\/*", "https:\/\/youtube.com\/*", "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*" ], "background": { "scripts": [ "popup.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/youtube.com\/*", "https:\/\/youtube.com\/*", "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*" ], "js": [ "popup.js", "YTQ.js" ] } ], "manifest_version": 2 } |