Auto HD|LQ for YouTube™
Play YouTube videos in the highest or lowest available quality.
Auto HD|LQ for YouTube™란 무엇입니까?
Auto HD|LQ for YouTube™은(는) Benni에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Play YouTube videos in the highest or lowest available quality."입니다.
확장 프로그램 스크린샷
Auto HD|LQ for YouTube™ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Auto HD|LQ for YouTube™ is an extension that forces the YouTube player to play videos in the highest (HD) or lowest (LQ) available qualities. Some features: 1. Automatically set the Highest/Lowest available quality for all YouTube videos, depending on the user's choice. 2. Easily switch the quality type from the toolbar popup UI. 4. HD quality is useful where internet speed is high enough to load large videos. 5. LQ is handy where internet speed is low and you just want to see what the video is, and don't want to waste your bandwidth. 6. There is also an option to automatically set the video quality by YouTube (auto mode). Note: to report bugs, please visit the addon's homepage (https://mybrowseraddon.com/youtube-hd-lq.html) and fill the bug report form.
확장 프로그램 기본 정보
이름 | Auto HD|LQ for YouTube™ |
ID | ghjlnhbnpinpcelhnkhjmbnkiaijbadd |
공식 URL | https://chromewebstore.google.com/detail/auto-hdlq-for-youtube/ghjlnhbnpinpcelhnkhjmbnkiaijbadd |
설명 | Play YouTube videos in the highest or lowest available quality. |
파일 크기 | 37.36 KB |
설치 횟수 | 2,787 |
현재 버전 | 0.1.7 |
최근 업데이트 | 2023-07-30 |
출시 날짜 | 2018-04-26 |
평점 | 4.34/5 총 32 개의 평점 |
개발자 | Benni |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://mybrowseraddon.com/youtube-hd-lq.html |
도움말 페이지 URL | https://mybrowseraddon.com/youtube-hd-lq.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.7", "manifest_version": 3, "permissions": [ "storage" ], "name": "Auto HD|LQ for YouTube\u2122", "homepage_url": "https:\/\/mybrowseraddon.com\/youtube-hd-lq.html", "description": "Play YouTube videos in the highest or lowest available quality.", "commands": { "_execute_action": [] }, "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "resources": [ "data\/content_script\/page_context\/*" ] } ], "action": { "default_popup": "data\/popup\/popup.html", "default_title": "Auto HD|LQ for YouTube\u2122", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "content_scripts": [ { "all_frames": true, "run_at": "document_start", "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "data\/content_script\/inject.js" ] } ], "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |