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 |
公式URL | 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 |
Eメール | [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\/*" ] } |