Bideo Max: Auto 8K/4K/HD for YouTube & More
Auto-set highest video quality on YouTube, Crunchyroll, VRV & more! Enjoy seamless streaming without manual adjustments.
Bideo Max: Auto 8K/4K/HD for YouTube & More란 무엇입니까?
Bideo Max: Auto 8K/4K/HD for YouTube & More은(는) https://www.oziku.tech에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Auto-set highest video quality on YouTube, Crunchyroll, VRV & more! Enjoy seamless streaming without manual adjustments."입니다.
확장 프로그램 스크린샷
Bideo Max: Auto 8K/4K/HD for YouTube & More 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
🎬🌟🎬 BideoMax (ビデオ): Elevate your streaming experience with automatic, top-quality video resolution on YouTube, Crunchyroll, VRV, and more!
😓💡😓 Tired of constantly adjusting video quality to enjoy your favorite content in the highest resolution? BideoMax is here to help!
🖥️🎊🖥️ Effortlessly set your streaming website video player to the highest available resolution—be it 8K, 4K, 1080p, or 720p—without having to do it manually every single time.
🚀🎉🚀 Enhance your streaming experience with BideoMax! Install now for automatic, best-quality video playback on popular streaming platforms. Say goodbye to manual adjustments and hello to uninterrupted, top-notch streaming.
📨📨📨 Support Email: [email protected]
✉️ Translations are done via a translator; for incorrect translations, please contact us.
✉️ For bugs or feature requests, don't hesitate to email us. 확장 프로그램 기본 정보
| 이름 | |
| ID | cmedmhnddgokbjflbjhkbeakkpaeenkc |
| 공식 URL | https://chromewebstore.google.com/detail/bideo-max-auto-8k4khd-for/cmedmhnddgokbjflbjhkbeakkpaeenkc |
| 설명 | Auto-set highest video quality on YouTube, Crunchyroll, VRV & more! Enjoy seamless streaming without manual adjustments. |
| 파일 크기 | 209 KB |
| 설치 횟수 | 548 |
| 현재 버전 | 0.7.0 |
| 최근 업데이트 | 2023-12-21 |
| 출시 날짜 | 2020-07-23 |
| 평점 | 4.17/5 총 12 개의 평점 |
| 개발자 | https://www.oziku.tech |
| 이메일 | [email protected] |
| 결제 유형 | free |
| 확장 프로그램 웹 사이트 | https://www.oziku.tech/ |
| 도움말 페이지 URL | https://www.oziku.tech/ |
| 개인정보 보호 정책 페이지 URL | https://www.oziku.tech/privacy |
| 지원되는 언어 | id,ms,de,en,en-GB,en-US,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "0.7.0",
"manifest_version": 3,
"name": "__MSG_ext_name__",
"description": "__MSG_ext_description__",
"author": "Oziku Technologies LLC",
"default_locale": "en",
"permissions": [
"scripting",
"storage",
"tabs"
],
"host_permissions": [
"*:\/\/*.crunchyroll.com\/*",
"*:\/\/*.funimation.com\/*",
"*:\/\/*.vrv.co\/*",
"*:\/\/vrv.co\/*",
"*:\/\/*.anime-planet.com\/*",
"*:\/\/*.youtube.com\/*"
],
"icons": {
"16": "assets\/logo\/logo_16.png",
"32": "assets\/logo\/logo_32.png",
"48": "assets\/logo\/logo_48.png",
"128": "assets\/logo\/logo_128.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "ui\/popup.html",
"default_title": "__MSG_ext_name__",
"default_icon": {
"16": "assets\/logo\/logo_16.png",
"32": "assets\/logo\/logo_32.png",
"48": "assets\/logo\/logo_48.png",
"128": "assets\/logo\/logo_128.png"
}
},
"commands": {
"toggle_start": {
"suggested_key": {
"default": "Ctrl+Shift+X",
"windows": "Ctrl+Shift+X",
"linux": "Ctrl+Shift+X",
"mac": "Command+Shift+X"
},
"description": "__MSG_set_on_off_extension__"
}
},
"content_scripts": [
{
"matches": [
"*:\/\/*.crunchyroll.com\/*",
"*:\/\/*.funimation.com\/*",
"*:\/\/*.vrv.co\/*",
"*:\/\/vrv.co\/*",
"*:\/\/*.anime-planet.com\/*",
"*:\/\/*.youtube.com\/*"
],
"js": [
"ui\/contentScript.js"
],
"all_frames": true,
"run_at": "document_idle"
}
]
} | |