YouTube Quality Adjuster
Automatically adjusts the quality of YouTube Videos
什麼是YouTube Quality Adjuster?
YouTube Quality Adjuster是由hiatamaworkshop開發的Chrome擴展程式,該擴展的主要功能是“Automatically adjusts the quality of YouTube Videos”。
擴展截圖
下載YouTube Quality Adjuster擴展crx文件
下載YouTube Quality Adjuster擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Adjust the quality of YouTube Videos automatically. Only available in the original YouTube page, not the embedded videos. no adds or any kind of network communication. Updated Sep/2023
擴展基本資訊
名稱 | YouTube Quality Adjuster |
ID | ohjehldapgfhlmekcencdhikpdjmjpkk |
官方網址 | https://chromewebstore.google.com/detail/youtube-quality-adjuster/ohjehldapgfhlmekcencdhikpdjmjpkk |
簡介 | Automatically adjusts the quality of YouTube Videos |
檔案大小 | 27.98 KB |
安裝次數 | 1,445 |
目前版本 | 2.1 |
更新時間 | 2023-10-04 |
上架時間 | 2021-02-09 |
評分 | 3.92/5 共 12 次評分 |
開發者 | hiatamaworkshop |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Quality Adjuster", "version": "2.1", "manifest_version": 3, "description": "Automatically adjusts the quality of YouTube Videos", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_popup": "youtube_quality.html", "default_icon": "icons\/icon16.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "qualityControl.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "permissions": [ "storage", "declarativeContent" ], "background": { "service_worker": "background.js" }, "host_permissions": [ "https:\/\/*.youtube.com\/*" ] } |