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